diff --git a/core/azure-core/src/main/java/com/microsoft/windowsazure/core/utils/EnumUtility.java b/core/azure-core/src/main/java/com/microsoft/windowsazure/core/utils/EnumUtility.java new file mode 100644 index 000000000000..733b9ebbc4ce --- /dev/null +++ b/core/azure-core/src/main/java/com/microsoft/windowsazure/core/utils/EnumUtility.java @@ -0,0 +1,45 @@ +/** + * Copyright Microsoft Corporation + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.microsoft.windowsazure.core.utils; + +import java.util.EnumSet; + +/** + * Provides functionality for parsing enums case insensitively. + */ +public final class EnumUtility { + /** + * Parses an Enum of type {@link T} case insensitively. + * + * @param enumClass the class of the Enum type + * @param name the string to parse + * @param the type of the Enum class, should be inferred by enumClass + * @return the parse Enum value of type {@link T} + */ + public static > T fromString(Class enumClass, String name) { + if (name == null) { + return null; + } + + EnumSet values = EnumSet.allOf(enumClass); + for (T value : values) { + if (value.name().equalsIgnoreCase(name)) { + return value; + } + } + throw new IllegalArgumentException( + "No enum constant " + enumClass.getCanonicalName() + "." + name); + } +} diff --git a/core/azure-core/src/test/java/com/microsoft/windowsazure/core/utils/EnumUtilityTest.java b/core/azure-core/src/test/java/com/microsoft/windowsazure/core/utils/EnumUtilityTest.java new file mode 100644 index 000000000000..5526e4587020 --- /dev/null +++ b/core/azure-core/src/test/java/com/microsoft/windowsazure/core/utils/EnumUtilityTest.java @@ -0,0 +1,48 @@ +/** + * Copyright Microsoft Corporation + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.microsoft.windowsazure.core.utils; + +import junit.framework.Assert; +import org.junit.Test; + +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.fail; + +public class EnumUtilityTest { + private enum Animal { + Cat, + Dog + } + + @Test + public void EnumUtilityShouldParseCaseInsensitively() + throws Exception { + String cat = "cat"; + String dog = "dOG"; + Assert.assertEquals(Animal.Cat, EnumUtility.fromString(Animal.class, cat)); + Assert.assertEquals(Animal.Dog, EnumUtility.fromString(Animal.class, dog)); + } + + @Test + public void EnumUtilityShouldThrowOnBadString() + throws Exception { + String cat = "cag"; + try { + EnumUtility.fromString(Animal.class, cat); + fail(); + } catch (IllegalArgumentException ex) { } + } +} diff --git a/resource-management/azure-mgmt-storage/src/main/java/com/microsoft/azure/management/storage/StorageAccountOperations.java b/resource-management/azure-mgmt-storage/src/main/java/com/microsoft/azure/management/storage/StorageAccountOperations.java index e03932d8573f..c1098a93b5d2 100644 --- a/resource-management/azure-mgmt-storage/src/main/java/com/microsoft/azure/management/storage/StorageAccountOperations.java +++ b/resource-management/azure-mgmt-storage/src/main/java/com/microsoft/azure/management/storage/StorageAccountOperations.java @@ -24,7 +24,6 @@ package com.microsoft.azure.management.storage; import com.microsoft.azure.management.storage.models.CheckNameAvailabilityResponse; -import com.microsoft.azure.management.storage.models.KeyName; import com.microsoft.azure.management.storage.models.StorageAccountCreateParameters; import com.microsoft.azure.management.storage.models.StorageAccountCreateResponse; import com.microsoft.azure.management.storage.models.StorageAccountGetPropertiesResponse; @@ -35,7 +34,6 @@ import com.microsoft.azure.management.storage.models.StorageAccountUpdateResponse; import com.microsoft.windowsazure.core.OperationResponse; import com.microsoft.windowsazure.exception.ServiceException; - import java.io.IOException; import java.net.URISyntaxException; import java.util.concurrent.ExecutionException; @@ -53,7 +51,7 @@ public interface StorageAccountOperations { * properties, then HTTP 200 would be returned. * * @param resourceGroupName Required. The name of the resource group within - * the user’s subscription. + * the user's subscription. * @param accountName Required. The name of the storage account within the * specified resource group. Storage account names must be between 3 and 24 * characters in length and use numbers and lower-case letters only. @@ -77,7 +75,7 @@ public interface StorageAccountOperations { * properties, then HTTP 200 would be returned. * * @param resourceGroupName Required. The name of the resource group within - * the user’s subscription. + * the user's subscription. * @param accountName Required. The name of the storage account within the * specified resource group. Storage account names must be between 3 and 24 * characters in length and use numbers and lower-case letters only. @@ -117,10 +115,10 @@ public interface StorageAccountOperations { * instead use the Update Storage Account API. If an account is already * created and subsequent create request is issued with exact same set of * properties, the request succeeds.The max number of storage accounts that - * can be created per subscription is limited to 20. + * can be created per subscription is limited to 100. * * @param resourceGroupName Required. The name of the resource group within - * the user’s subscription. + * the user's subscription. * @param accountName Required. The name of the storage account within the * specified resource group. Storage account names must be between 3 and 24 * characters in length and use numbers and lower-case letters only. @@ -146,10 +144,10 @@ public interface StorageAccountOperations { * instead use the Update Storage Account API. If an account is already * created and subsequent create request is issued with exact same set of * properties, the request succeeds.The max number of storage accounts that - * can be created per subscription is limited to 20. + * can be created per subscription is limited to 100. * * @param resourceGroupName Required. The name of the resource group within - * the user’s subscription. + * the user's subscription. * @param accountName Required. The name of the storage account within the * specified resource group. Storage account names must be between 3 and 24 * characters in length and use numbers and lower-case letters only. @@ -163,7 +161,7 @@ public interface StorageAccountOperations { * Deletes a storage account in Microsoft Azure. * * @param resourceGroupName Required. The name of the resource group within - * the user’s subscription. + * the user's subscription. * @param accountName Required. The name of the storage account within the * specified resource group. Storage account names must be between 3 and 24 * characters in length and use numbers and lower-case letters only. @@ -180,7 +178,7 @@ public interface StorageAccountOperations { * Deletes a storage account in Microsoft Azure. * * @param resourceGroupName Required. The name of the resource group within - * the user’s subscription. + * the user's subscription. * @param accountName Required. The name of the storage account within the * specified resource group. Storage account names must be between 3 and 24 * characters in length and use numbers and lower-case letters only. @@ -195,7 +193,7 @@ public interface StorageAccountOperations { * ListKeys operation should be used to retrieve storage keys. * * @param resourceGroupName Required. The name of the resource group within - * the user’s subscription. + * the user's subscription. * @param accountName Required. The name of the storage account within the * specified resource group. Storage account names must be between 3 and 24 * characters in length and use numbers and lower-case letters only. @@ -215,7 +213,7 @@ public interface StorageAccountOperations { * ListKeys operation should be used to retrieve storage keys. * * @param resourceGroupName Required. The name of the resource group within - * the user’s subscription. + * the user's subscription. * @param accountName Required. The name of the storage account within the * specified resource group. Storage account names must be between 3 and 24 * characters in length and use numbers and lower-case letters only. @@ -251,7 +249,7 @@ public interface StorageAccountOperations { * this. * * @param resourceGroupName Required. The name of the resource group within - * the user’s subscription. + * the user's subscription. * @throws IOException Signals that an I/O exception of some sort has * occurred. This class is the general class of exceptions produced by * failed or interrupted I/O operations. @@ -268,7 +266,7 @@ public interface StorageAccountOperations { * this. * * @param resourceGroupName Required. The name of the resource group within - * the user’s subscription. + * the user's subscription. * @return The list storage accounts operation response. */ Future listByResourceGroupAsync(String resourceGroupName); @@ -299,48 +297,51 @@ public interface StorageAccountOperations { * Regenerates the access keys for the specified storage account. * * @param resourceGroupName Required. The name of the resource group within - * the user’s subscription. + * the user's subscription. * @param accountName Required. The name of the storage account within the * specified resource group. Storage account names must be between 3 and 24 * characters in length and use numbers and lower-case letters only. * @param regenerateKey Required. Specifies name of the key which should be - * regenerated. + * regenerated. key1 or key2 for the default keys * @throws IOException Signals that an I/O exception of some sort has * occurred. This class is the general class of exceptions produced by * failed or interrupted I/O operations. * @throws ServiceException Thrown if an unexpected response is found. * @return The RegenerateKey operation response. */ - StorageAccountRegenerateKeyResponse regenerateKey(String resourceGroupName, String accountName, KeyName regenerateKey) throws IOException, ServiceException; + StorageAccountRegenerateKeyResponse regenerateKey(String resourceGroupName, String accountName, String regenerateKey) throws IOException, ServiceException; /** * Regenerates the access keys for the specified storage account. * * @param resourceGroupName Required. The name of the resource group within - * the user’s subscription. + * the user's subscription. * @param accountName Required. The name of the storage account within the * specified resource group. Storage account names must be between 3 and 24 * characters in length and use numbers and lower-case letters only. * @param regenerateKey Required. Specifies name of the key which should be - * regenerated. + * regenerated. key1 or key2 for the default keys * @return The RegenerateKey operation response. */ - Future regenerateKeyAsync(String resourceGroupName, String accountName, KeyName regenerateKey); + Future regenerateKeyAsync(String resourceGroupName, String accountName, String regenerateKey); /** * Updates the account type or tags for a storage account. It can also be * used to add a custom domain (note that custom domains cannot be added * via the Create operation). Only one custom domain is supported per - * storage account. This API can only be used to update one of tags, - * accountType, or customDomain per call. To update multiple of these - * properties, call the API multiple times with one change per call. This - * call does not change the storage keys for the account. If you want to - * change storage account keys, use the RegenerateKey operation. The - * location and name of the storage account cannot be changed after - * creation. + * storage account. In order to replace a custom domain, the old value must + * be cleared before a new value may be set. To clear a custom domain, + * simply update the custom domain with empty string. Then call update + * again with the new cutsom domain name. The update API can only be used + * to update one of tags, accountType, or customDomain per call. To update + * multiple of these properties, call the API multiple times with one + * change per call. This call does not change the storage keys for the + * account. If you want to change storage account keys, use the + * RegenerateKey operation. The location and name of the storage account + * cannot be changed after creation. * * @param resourceGroupName Required. The name of the resource group within - * the user’s subscription. + * the user's subscription. * @param accountName Required. The name of the storage account within the * specified resource group. Storage account names must be between 3 and 24 * characters in length and use numbers and lower-case letters only. @@ -360,16 +361,19 @@ public interface StorageAccountOperations { * Updates the account type or tags for a storage account. It can also be * used to add a custom domain (note that custom domains cannot be added * via the Create operation). Only one custom domain is supported per - * storage account. This API can only be used to update one of tags, - * accountType, or customDomain per call. To update multiple of these - * properties, call the API multiple times with one change per call. This - * call does not change the storage keys for the account. If you want to - * change storage account keys, use the RegenerateKey operation. The - * location and name of the storage account cannot be changed after - * creation. + * storage account. In order to replace a custom domain, the old value must + * be cleared before a new value may be set. To clear a custom domain, + * simply update the custom domain with empty string. Then call update + * again with the new cutsom domain name. The update API can only be used + * to update one of tags, accountType, or customDomain per call. To update + * multiple of these properties, call the API multiple times with one + * change per call. This call does not change the storage keys for the + * account. If you want to change storage account keys, use the + * RegenerateKey operation. The location and name of the storage account + * cannot be changed after creation. * * @param resourceGroupName Required. The name of the resource group within - * the user’s subscription. + * the user's subscription. * @param accountName Required. The name of the storage account within the * specified resource group. Storage account names must be between 3 and 24 * characters in length and use numbers and lower-case letters only. diff --git a/resource-management/azure-mgmt-storage/src/main/java/com/microsoft/azure/management/storage/StorageAccountOperationsImpl.java b/resource-management/azure-mgmt-storage/src/main/java/com/microsoft/azure/management/storage/StorageAccountOperationsImpl.java index 51d193419ca0..c50ca47d73c1 100644 --- a/resource-management/azure-mgmt-storage/src/main/java/com/microsoft/azure/management/storage/StorageAccountOperationsImpl.java +++ b/resource-management/azure-mgmt-storage/src/main/java/com/microsoft/azure/management/storage/StorageAccountOperationsImpl.java @@ -28,7 +28,6 @@ import com.microsoft.azure.management.storage.models.CheckNameAvailabilityResponse; import com.microsoft.azure.management.storage.models.CustomDomain; import com.microsoft.azure.management.storage.models.Endpoints; -import com.microsoft.azure.management.storage.models.KeyName; import com.microsoft.azure.management.storage.models.ProvisioningState; import com.microsoft.azure.management.storage.models.Reason; import com.microsoft.azure.management.storage.models.StorageAccount; @@ -47,24 +46,10 @@ import com.microsoft.windowsazure.core.ServiceOperations; import com.microsoft.windowsazure.core.pipeline.apache.CustomHttpDelete; import com.microsoft.windowsazure.core.utils.CollectionStringBuilder; +import com.microsoft.windowsazure.core.utils.EnumUtility; import com.microsoft.windowsazure.exception.ServiceException; import com.microsoft.windowsazure.tracing.ClientRequestTrackingHandler; import com.microsoft.windowsazure.tracing.CloudTracing; -import org.apache.commons.io.IOUtils; -import org.apache.http.HttpResponse; -import org.apache.http.HttpStatus; -import org.apache.http.client.methods.HttpGet; -import org.apache.http.client.methods.HttpPatch; -import org.apache.http.client.methods.HttpPost; -import org.apache.http.client.methods.HttpPut; -import org.apache.http.entity.StringEntity; -import org.codehaus.jackson.JsonNode; -import org.codehaus.jackson.map.ObjectMapper; -import org.codehaus.jackson.node.ArrayNode; -import org.codehaus.jackson.node.NullNode; -import org.codehaus.jackson.node.ObjectNode; - -import javax.xml.bind.DatatypeConverter; import java.io.IOException; import java.io.InputStream; import java.io.StringWriter; @@ -80,6 +65,20 @@ import java.util.concurrent.Callable; import java.util.concurrent.ExecutionException; import java.util.concurrent.Future; +import javax.xml.bind.DatatypeConverter; +import org.apache.commons.io.IOUtils; +import org.apache.http.HttpResponse; +import org.apache.http.HttpStatus; +import org.apache.http.client.methods.HttpGet; +import org.apache.http.client.methods.HttpPatch; +import org.apache.http.client.methods.HttpPost; +import org.apache.http.client.methods.HttpPut; +import org.apache.http.entity.StringEntity; +import org.codehaus.jackson.JsonNode; +import org.codehaus.jackson.map.ObjectMapper; +import org.codehaus.jackson.node.ArrayNode; +import org.codehaus.jackson.node.NullNode; +import org.codehaus.jackson.node.ObjectNode; /** * Operations for managing storage accounts. @@ -113,7 +112,7 @@ public StorageManagementClientImpl getClient() { * properties, then HTTP 200 would be returned. * * @param resourceGroupName Required. The name of the resource group within - * the user’s subscription. + * the user's subscription. * @param accountName Required. The name of the storage account within the * specified resource group. Storage account names must be between 3 and 24 * characters in length and use numbers and lower-case letters only. @@ -139,7 +138,7 @@ public StorageAccountCreateResponse call() throws Exception { * properties, then HTTP 200 would be returned. * * @param resourceGroupName Required. The name of the resource group within - * the user’s subscription. + * the user's subscription. * @param accountName Required. The name of the storage account within the * specified resource group. Storage account names must be between 3 and 24 * characters in length and use numbers and lower-case letters only. @@ -206,7 +205,7 @@ public StorageAccountCreateResponse beginCreate(String resourceGroupName, String url = url + "/providers/Microsoft.Storage/storageAccounts/"; url = url + URLEncoder.encode(accountName, "UTF-8"); ArrayList queryParameters = new ArrayList(); - queryParameters.add("api-version=" + "2015-05-01-preview"); + queryParameters.add("api-version=" + "2015-06-15"); if (queryParameters.size() > 0) { url = url + "?" + CollectionStringBuilder.join(queryParameters, "&"); } @@ -341,7 +340,7 @@ public StorageAccountCreateResponse beginCreate(String resourceGroupName, String JsonNode provisioningStateValue = propertiesValue2.get("provisioningState"); if (provisioningStateValue != null && provisioningStateValue instanceof NullNode == false) { ProvisioningState provisioningStateInstance; - provisioningStateInstance = Enum.valueOf(ProvisioningState.class, provisioningStateValue.getTextValue()); + provisioningStateInstance = EnumUtility.fromString(ProvisioningState.class, provisioningStateValue.getTextValue()); storageAccountInstance.setProvisioningState(provisioningStateInstance); } @@ -377,6 +376,13 @@ public StorageAccountCreateResponse beginCreate(String resourceGroupName, String tableInstance = new URI(tableValue.getTextValue()); primaryEndpointsInstance.setTable(tableInstance); } + + JsonNode fileValue = primaryEndpointsValue.get("file"); + if (fileValue != null && fileValue instanceof NullNode == false) { + URI fileInstance; + fileInstance = new URI(fileValue.getTextValue()); + primaryEndpointsInstance.setFile(fileInstance); + } } JsonNode primaryLocationValue = propertiesValue2.get("primaryLocation"); @@ -389,7 +395,7 @@ public StorageAccountCreateResponse beginCreate(String resourceGroupName, String JsonNode statusOfPrimaryValue = propertiesValue2.get("statusOfPrimary"); if (statusOfPrimaryValue != null && statusOfPrimaryValue instanceof NullNode == false) { AccountStatus statusOfPrimaryInstance; - statusOfPrimaryInstance = Enum.valueOf(AccountStatus.class, statusOfPrimaryValue.getTextValue()); + statusOfPrimaryInstance = EnumUtility.fromString(AccountStatus.class, statusOfPrimaryValue.getTextValue()); storageAccountInstance.setStatusOfPrimary(statusOfPrimaryInstance); } @@ -410,7 +416,7 @@ public StorageAccountCreateResponse beginCreate(String resourceGroupName, String JsonNode statusOfSecondaryValue = propertiesValue2.get("statusOfSecondary"); if (statusOfSecondaryValue != null && statusOfSecondaryValue instanceof NullNode == false) { AccountStatus statusOfSecondaryInstance; - statusOfSecondaryInstance = Enum.valueOf(AccountStatus.class, statusOfSecondaryValue.getTextValue()); + statusOfSecondaryInstance = EnumUtility.fromString(AccountStatus.class, statusOfSecondaryValue.getTextValue()); storageAccountInstance.setStatusOfSecondary(statusOfSecondaryInstance); } @@ -466,6 +472,13 @@ public StorageAccountCreateResponse beginCreate(String resourceGroupName, String tableInstance2 = new URI(tableValue2.getTextValue()); secondaryEndpointsInstance.setTable(tableInstance2); } + + JsonNode fileValue2 = secondaryEndpointsValue.get("file"); + if (fileValue2 != null && fileValue2 instanceof NullNode == false) { + URI fileInstance2; + fileInstance2 = new URI(fileValue2.getTextValue()); + secondaryEndpointsInstance.setFile(fileInstance2); + } } } } @@ -475,8 +488,8 @@ public StorageAccountCreateResponse beginCreate(String resourceGroupName, String if (httpResponse.getHeaders("Location").length > 0) { result.setOperationStatusLink(httpResponse.getFirstHeader("Location").getValue()); } - if (httpResponse.getHeaders("RetryAfter").length > 0) { - result.setRetryAfter(DatatypeConverter.parseInt(httpResponse.getFirstHeader("RetryAfter").getValue())); + if (httpResponse.getHeaders("Retry-After").length > 0) { + result.setRetryAfter(DatatypeConverter.parseInt(httpResponse.getFirstHeader("Retry-After").getValue())); } if (httpResponse.getHeaders("x-ms-request-id").length > 0) { result.setRequestId(httpResponse.getFirstHeader("x-ms-request-id").getValue()); @@ -554,7 +567,7 @@ public CheckNameAvailabilityResponse checkNameAvailability(String accountName) t } url = url + "/providers/Microsoft.Storage/checkNameAvailability"; ArrayList queryParameters = new ArrayList(); - queryParameters.add("api-version=" + "2015-05-01-preview"); + queryParameters.add("api-version=" + "2015-06-15"); if (queryParameters.size() > 0) { url = url + "?" + CollectionStringBuilder.join(queryParameters, "&"); } @@ -637,7 +650,7 @@ public CheckNameAvailabilityResponse checkNameAvailability(String accountName) t JsonNode reasonValue = responseDoc.get("reason"); if (reasonValue != null && reasonValue instanceof NullNode == false) { Reason reasonInstance; - reasonInstance = Enum.valueOf(Reason.class, reasonValue.getTextValue()); + reasonInstance = EnumUtility.fromString(Reason.class, reasonValue.getTextValue()); result.setReason(reasonInstance); } @@ -672,10 +685,10 @@ public CheckNameAvailabilityResponse checkNameAvailability(String accountName) t * instead use the Update Storage Account API. If an account is already * created and subsequent create request is issued with exact same set of * properties, the request succeeds.The max number of storage accounts that - * can be created per subscription is limited to 20. + * can be created per subscription is limited to 100. * * @param resourceGroupName Required. The name of the resource group within - * the user’s subscription. + * the user's subscription. * @param accountName Required. The name of the storage account within the * specified resource group. Storage account names must be between 3 and 24 * characters in length and use numbers and lower-case letters only. @@ -699,10 +712,10 @@ public StorageAccountCreateResponse call() throws Exception { * instead use the Update Storage Account API. If an account is already * created and subsequent create request is issued with exact same set of * properties, the request succeeds.The max number of storage accounts that - * can be created per subscription is limited to 20. + * can be created per subscription is limited to 100. * * @param resourceGroupName Required. The name of the resource group within - * the user’s subscription. + * the user's subscription. * @param accountName Required. The name of the storage account within the * specified resource group. Storage account names must be between 3 and 24 * characters in length and use numbers and lower-case letters only. @@ -778,7 +791,7 @@ public StorageAccountCreateResponse create(String resourceGroupName, String acco * Deletes a storage account in Microsoft Azure. * * @param resourceGroupName Required. The name of the resource group within - * the user’s subscription. + * the user's subscription. * @param accountName Required. The name of the storage account within the * specified resource group. Storage account names must be between 3 and 24 * characters in length and use numbers and lower-case letters only. @@ -799,7 +812,7 @@ public OperationResponse call() throws Exception { * Deletes a storage account in Microsoft Azure. * * @param resourceGroupName Required. The name of the resource group within - * the user’s subscription. + * the user's subscription. * @param accountName Required. The name of the storage account within the * specified resource group. Storage account names must be between 3 and 24 * characters in length and use numbers and lower-case letters only. @@ -853,7 +866,7 @@ public OperationResponse delete(String resourceGroupName, String accountName) th url = url + "/providers/Microsoft.Storage/storageAccounts/"; url = url + URLEncoder.encode(accountName, "UTF-8"); ArrayList queryParameters = new ArrayList(); - queryParameters.add("api-version=" + "2015-05-01-preview"); + queryParameters.add("api-version=" + "2015-06-15"); if (queryParameters.size() > 0) { url = url + "?" + CollectionStringBuilder.join(queryParameters, "&"); } @@ -919,7 +932,7 @@ public OperationResponse delete(String resourceGroupName, String accountName) th * ListKeys operation should be used to retrieve storage keys. * * @param resourceGroupName Required. The name of the resource group within - * the user’s subscription. + * the user's subscription. * @param accountName Required. The name of the storage account within the * specified resource group. Storage account names must be between 3 and 24 * characters in length and use numbers and lower-case letters only. @@ -941,7 +954,7 @@ public StorageAccountGetPropertiesResponse call() throws Exception { * ListKeys operation should be used to retrieve storage keys. * * @param resourceGroupName Required. The name of the resource group within - * the user’s subscription. + * the user's subscription. * @param accountName Required. The name of the storage account within the * specified resource group. Storage account names must be between 3 and 24 * characters in length and use numbers and lower-case letters only. @@ -996,7 +1009,7 @@ public StorageAccountGetPropertiesResponse getProperties(String resourceGroupNam url = url + "/providers/Microsoft.Storage/storageAccounts/"; url = url + URLEncoder.encode(accountName, "UTF-8"); ArrayList queryParameters = new ArrayList(); - queryParameters.add("api-version=" + "2015-05-01-preview"); + queryParameters.add("api-version=" + "2015-06-15"); if (queryParameters.size() > 0) { url = url + "?" + CollectionStringBuilder.join(queryParameters, "&"); } @@ -1097,7 +1110,7 @@ public StorageAccountGetPropertiesResponse getProperties(String resourceGroupNam JsonNode provisioningStateValue = propertiesValue.get("provisioningState"); if (provisioningStateValue != null && provisioningStateValue instanceof NullNode == false) { ProvisioningState provisioningStateInstance; - provisioningStateInstance = Enum.valueOf(ProvisioningState.class, provisioningStateValue.getTextValue()); + provisioningStateInstance = EnumUtility.fromString(ProvisioningState.class, provisioningStateValue.getTextValue()); storageAccountInstance.setProvisioningState(provisioningStateInstance); } @@ -1133,6 +1146,13 @@ public StorageAccountGetPropertiesResponse getProperties(String resourceGroupNam tableInstance = new URI(tableValue.getTextValue()); primaryEndpointsInstance.setTable(tableInstance); } + + JsonNode fileValue = primaryEndpointsValue.get("file"); + if (fileValue != null && fileValue instanceof NullNode == false) { + URI fileInstance; + fileInstance = new URI(fileValue.getTextValue()); + primaryEndpointsInstance.setFile(fileInstance); + } } JsonNode primaryLocationValue = propertiesValue.get("primaryLocation"); @@ -1145,7 +1165,7 @@ public StorageAccountGetPropertiesResponse getProperties(String resourceGroupNam JsonNode statusOfPrimaryValue = propertiesValue.get("statusOfPrimary"); if (statusOfPrimaryValue != null && statusOfPrimaryValue instanceof NullNode == false) { AccountStatus statusOfPrimaryInstance; - statusOfPrimaryInstance = Enum.valueOf(AccountStatus.class, statusOfPrimaryValue.getTextValue()); + statusOfPrimaryInstance = EnumUtility.fromString(AccountStatus.class, statusOfPrimaryValue.getTextValue()); storageAccountInstance.setStatusOfPrimary(statusOfPrimaryInstance); } @@ -1166,7 +1186,7 @@ public StorageAccountGetPropertiesResponse getProperties(String resourceGroupNam JsonNode statusOfSecondaryValue = propertiesValue.get("statusOfSecondary"); if (statusOfSecondaryValue != null && statusOfSecondaryValue instanceof NullNode == false) { AccountStatus statusOfSecondaryInstance; - statusOfSecondaryInstance = Enum.valueOf(AccountStatus.class, statusOfSecondaryValue.getTextValue()); + statusOfSecondaryInstance = EnumUtility.fromString(AccountStatus.class, statusOfSecondaryValue.getTextValue()); storageAccountInstance.setStatusOfSecondary(statusOfSecondaryInstance); } @@ -1222,6 +1242,13 @@ public StorageAccountGetPropertiesResponse getProperties(String resourceGroupNam tableInstance2 = new URI(tableValue2.getTextValue()); secondaryEndpointsInstance.setTable(tableInstance2); } + + JsonNode fileValue2 = secondaryEndpointsValue.get("file"); + if (fileValue2 != null && fileValue2 instanceof NullNode == false) { + URI fileInstance2; + fileInstance2 = new URI(fileValue2.getTextValue()); + secondaryEndpointsInstance.setFile(fileInstance2); + } } } } @@ -1292,7 +1319,7 @@ public StorageAccountListResponse list() throws IOException, ServiceException, U } url = url + "/providers/Microsoft.Storage/storageAccounts"; ArrayList queryParameters = new ArrayList(); - queryParameters.add("api-version=" + "2015-05-01-preview"); + queryParameters.add("api-version=" + "2015-06-15"); if (queryParameters.size() > 0) { url = url + "?" + CollectionStringBuilder.join(queryParameters, "&"); } @@ -1396,7 +1423,7 @@ public StorageAccountListResponse list() throws IOException, ServiceException, U JsonNode provisioningStateValue = propertiesValue.get("provisioningState"); if (provisioningStateValue != null && provisioningStateValue instanceof NullNode == false) { ProvisioningState provisioningStateInstance; - provisioningStateInstance = Enum.valueOf(ProvisioningState.class, provisioningStateValue.getTextValue()); + provisioningStateInstance = EnumUtility.fromString(ProvisioningState.class, provisioningStateValue.getTextValue()); storageAccountJsonInstance.setProvisioningState(provisioningStateInstance); } @@ -1432,6 +1459,13 @@ public StorageAccountListResponse list() throws IOException, ServiceException, U tableInstance = new URI(tableValue.getTextValue()); primaryEndpointsInstance.setTable(tableInstance); } + + JsonNode fileValue = primaryEndpointsValue.get("file"); + if (fileValue != null && fileValue instanceof NullNode == false) { + URI fileInstance; + fileInstance = new URI(fileValue.getTextValue()); + primaryEndpointsInstance.setFile(fileInstance); + } } JsonNode primaryLocationValue = propertiesValue.get("primaryLocation"); @@ -1444,7 +1478,7 @@ public StorageAccountListResponse list() throws IOException, ServiceException, U JsonNode statusOfPrimaryValue = propertiesValue.get("statusOfPrimary"); if (statusOfPrimaryValue != null && statusOfPrimaryValue instanceof NullNode == false) { AccountStatus statusOfPrimaryInstance; - statusOfPrimaryInstance = Enum.valueOf(AccountStatus.class, statusOfPrimaryValue.getTextValue()); + statusOfPrimaryInstance = EnumUtility.fromString(AccountStatus.class, statusOfPrimaryValue.getTextValue()); storageAccountJsonInstance.setStatusOfPrimary(statusOfPrimaryInstance); } @@ -1465,7 +1499,7 @@ public StorageAccountListResponse list() throws IOException, ServiceException, U JsonNode statusOfSecondaryValue = propertiesValue.get("statusOfSecondary"); if (statusOfSecondaryValue != null && statusOfSecondaryValue instanceof NullNode == false) { AccountStatus statusOfSecondaryInstance; - statusOfSecondaryInstance = Enum.valueOf(AccountStatus.class, statusOfSecondaryValue.getTextValue()); + statusOfSecondaryInstance = EnumUtility.fromString(AccountStatus.class, statusOfSecondaryValue.getTextValue()); storageAccountJsonInstance.setStatusOfSecondary(statusOfSecondaryInstance); } @@ -1521,17 +1555,17 @@ public StorageAccountListResponse list() throws IOException, ServiceException, U tableInstance2 = new URI(tableValue2.getTextValue()); secondaryEndpointsInstance.setTable(tableInstance2); } + + JsonNode fileValue2 = secondaryEndpointsValue.get("file"); + if (fileValue2 != null && fileValue2 instanceof NullNode == false) { + URI fileInstance2; + fileInstance2 = new URI(fileValue2.getTextValue()); + secondaryEndpointsInstance.setFile(fileInstance2); + } } } } } - - JsonNode nextLinkValue = responseDoc.get("nextLink"); - if (nextLinkValue != null && nextLinkValue instanceof NullNode == false) { - String nextLinkInstance; - nextLinkInstance = nextLinkValue.getTextValue(); - result.setNextLink(nextLinkInstance); - } } } @@ -1557,7 +1591,7 @@ public StorageAccountListResponse list() throws IOException, ServiceException, U * this. * * @param resourceGroupName Required. The name of the resource group within - * the user’s subscription. + * the user's subscription. * @return The list storage accounts operation response. */ @Override @@ -1576,7 +1610,7 @@ public StorageAccountListResponse call() throws Exception { * this. * * @param resourceGroupName Required. The name of the resource group within - * the user’s subscription. + * the user's subscription. * @throws IOException Signals that an I/O exception of some sort has * occurred. This class is the general class of exceptions produced by * failed or interrupted I/O operations. @@ -1612,7 +1646,7 @@ public StorageAccountListResponse listByResourceGroup(String resourceGroupName) url = url + URLEncoder.encode(resourceGroupName, "UTF-8"); url = url + "/providers/Microsoft.Storage/storageAccounts"; ArrayList queryParameters = new ArrayList(); - queryParameters.add("api-version=" + "2015-05-01-preview"); + queryParameters.add("api-version=" + "2015-06-15"); if (queryParameters.size() > 0) { url = url + "?" + CollectionStringBuilder.join(queryParameters, "&"); } @@ -1716,7 +1750,7 @@ public StorageAccountListResponse listByResourceGroup(String resourceGroupName) JsonNode provisioningStateValue = propertiesValue.get("provisioningState"); if (provisioningStateValue != null && provisioningStateValue instanceof NullNode == false) { ProvisioningState provisioningStateInstance; - provisioningStateInstance = Enum.valueOf(ProvisioningState.class, provisioningStateValue.getTextValue()); + provisioningStateInstance = EnumUtility.fromString(ProvisioningState.class, provisioningStateValue.getTextValue()); storageAccountJsonInstance.setProvisioningState(provisioningStateInstance); } @@ -1752,6 +1786,13 @@ public StorageAccountListResponse listByResourceGroup(String resourceGroupName) tableInstance = new URI(tableValue.getTextValue()); primaryEndpointsInstance.setTable(tableInstance); } + + JsonNode fileValue = primaryEndpointsValue.get("file"); + if (fileValue != null && fileValue instanceof NullNode == false) { + URI fileInstance; + fileInstance = new URI(fileValue.getTextValue()); + primaryEndpointsInstance.setFile(fileInstance); + } } JsonNode primaryLocationValue = propertiesValue.get("primaryLocation"); @@ -1764,7 +1805,7 @@ public StorageAccountListResponse listByResourceGroup(String resourceGroupName) JsonNode statusOfPrimaryValue = propertiesValue.get("statusOfPrimary"); if (statusOfPrimaryValue != null && statusOfPrimaryValue instanceof NullNode == false) { AccountStatus statusOfPrimaryInstance; - statusOfPrimaryInstance = Enum.valueOf(AccountStatus.class, statusOfPrimaryValue.getTextValue()); + statusOfPrimaryInstance = EnumUtility.fromString(AccountStatus.class, statusOfPrimaryValue.getTextValue()); storageAccountJsonInstance.setStatusOfPrimary(statusOfPrimaryInstance); } @@ -1785,7 +1826,7 @@ public StorageAccountListResponse listByResourceGroup(String resourceGroupName) JsonNode statusOfSecondaryValue = propertiesValue.get("statusOfSecondary"); if (statusOfSecondaryValue != null && statusOfSecondaryValue instanceof NullNode == false) { AccountStatus statusOfSecondaryInstance; - statusOfSecondaryInstance = Enum.valueOf(AccountStatus.class, statusOfSecondaryValue.getTextValue()); + statusOfSecondaryInstance = EnumUtility.fromString(AccountStatus.class, statusOfSecondaryValue.getTextValue()); storageAccountJsonInstance.setStatusOfSecondary(statusOfSecondaryInstance); } @@ -1841,17 +1882,17 @@ public StorageAccountListResponse listByResourceGroup(String resourceGroupName) tableInstance2 = new URI(tableValue2.getTextValue()); secondaryEndpointsInstance.setTable(tableInstance2); } + + JsonNode fileValue2 = secondaryEndpointsValue.get("file"); + if (fileValue2 != null && fileValue2 instanceof NullNode == false) { + URI fileInstance2; + fileInstance2 = new URI(fileValue2.getTextValue()); + secondaryEndpointsInstance.setFile(fileInstance2); + } } } } } - - JsonNode nextLinkValue = responseDoc.get("nextLink"); - if (nextLinkValue != null && nextLinkValue instanceof NullNode == false) { - String nextLinkInstance; - nextLinkInstance = nextLinkValue.getTextValue(); - result.setNextLink(nextLinkInstance); - } } } @@ -1943,7 +1984,7 @@ public StorageAccountListKeysResponse listKeys(String resourceGroupName, String url = url + URLEncoder.encode(accountName, "UTF-8"); url = url + "/listKeys"; ArrayList queryParameters = new ArrayList(); - queryParameters.add("api-version=" + "2015-05-01-preview"); + queryParameters.add("api-version=" + "2015-06-15"); if (queryParameters.size() > 0) { url = url + "?" + CollectionStringBuilder.join(queryParameters, "&"); } @@ -2036,16 +2077,16 @@ public StorageAccountListKeysResponse listKeys(String resourceGroupName, String * Regenerates the access keys for the specified storage account. * * @param resourceGroupName Required. The name of the resource group within - * the user’s subscription. + * the user's subscription. * @param accountName Required. The name of the storage account within the * specified resource group. Storage account names must be between 3 and 24 * characters in length and use numbers and lower-case letters only. * @param regenerateKey Required. Specifies name of the key which should be - * regenerated. + * regenerated. key1 or key2 for the default keys * @return The RegenerateKey operation response. */ @Override - public Future regenerateKeyAsync(final String resourceGroupName, final String accountName, final KeyName regenerateKey) { + public Future regenerateKeyAsync(final String resourceGroupName, final String accountName, final String regenerateKey) { return this.getClient().getExecutorService().submit(new Callable() { @Override public StorageAccountRegenerateKeyResponse call() throws Exception { @@ -2058,12 +2099,12 @@ public StorageAccountRegenerateKeyResponse call() throws Exception { * Regenerates the access keys for the specified storage account. * * @param resourceGroupName Required. The name of the resource group within - * the user’s subscription. + * the user's subscription. * @param accountName Required. The name of the storage account within the * specified resource group. Storage account names must be between 3 and 24 * characters in length and use numbers and lower-case letters only. * @param regenerateKey Required. Specifies name of the key which should be - * regenerated. + * regenerated. key1 or key2 for the default keys * @throws IOException Signals that an I/O exception of some sort has * occurred. This class is the general class of exceptions produced by * failed or interrupted I/O operations. @@ -2071,7 +2112,7 @@ public StorageAccountRegenerateKeyResponse call() throws Exception { * @return The RegenerateKey operation response. */ @Override - public StorageAccountRegenerateKeyResponse regenerateKey(String resourceGroupName, String accountName, KeyName regenerateKey) throws IOException, ServiceException { + public StorageAccountRegenerateKeyResponse regenerateKey(String resourceGroupName, String accountName, String regenerateKey) throws IOException, ServiceException { // Validate if (resourceGroupName == null) { throw new NullPointerException("resourceGroupName"); @@ -2118,7 +2159,7 @@ public StorageAccountRegenerateKeyResponse regenerateKey(String resourceGroupNam url = url + URLEncoder.encode(accountName, "UTF-8"); url = url + "/regenerateKey"; ArrayList queryParameters = new ArrayList(); - queryParameters.add("api-version=" + "2015-05-01-preview"); + queryParameters.add("api-version=" + "2015-06-15"); if (queryParameters.size() > 0) { url = url + "?" + CollectionStringBuilder.join(queryParameters, "&"); } @@ -2148,7 +2189,7 @@ public StorageAccountRegenerateKeyResponse regenerateKey(String resourceGroupNam ObjectNode storageAccountRegenerateKeyParametersValue = objectMapper.createObjectNode(); requestDoc = storageAccountRegenerateKeyParametersValue; - ((ObjectNode) storageAccountRegenerateKeyParametersValue).put("keyName", StorageManagementClientImpl.keyNameToString(regenerateKey)); + ((ObjectNode) storageAccountRegenerateKeyParametersValue).put("keyName", regenerateKey); StringWriter stringWriter = new StringWriter(); objectMapper.writeValue(stringWriter, requestDoc); @@ -2228,16 +2269,19 @@ public StorageAccountRegenerateKeyResponse regenerateKey(String resourceGroupNam * Updates the account type or tags for a storage account. It can also be * used to add a custom domain (note that custom domains cannot be added * via the Create operation). Only one custom domain is supported per - * storage account. This API can only be used to update one of tags, - * accountType, or customDomain per call. To update multiple of these - * properties, call the API multiple times with one change per call. This - * call does not change the storage keys for the account. If you want to - * change storage account keys, use the RegenerateKey operation. The - * location and name of the storage account cannot be changed after - * creation. + * storage account. In order to replace a custom domain, the old value must + * be cleared before a new value may be set. To clear a custom domain, + * simply update the custom domain with empty string. Then call update + * again with the new cutsom domain name. The update API can only be used + * to update one of tags, accountType, or customDomain per call. To update + * multiple of these properties, call the API multiple times with one + * change per call. This call does not change the storage keys for the + * account. If you want to change storage account keys, use the + * RegenerateKey operation. The location and name of the storage account + * cannot be changed after creation. * * @param resourceGroupName Required. The name of the resource group within - * the user’s subscription. + * the user's subscription. * @param accountName Required. The name of the storage account within the * specified resource group. Storage account names must be between 3 and 24 * characters in length and use numbers and lower-case letters only. @@ -2259,16 +2303,19 @@ public StorageAccountUpdateResponse call() throws Exception { * Updates the account type or tags for a storage account. It can also be * used to add a custom domain (note that custom domains cannot be added * via the Create operation). Only one custom domain is supported per - * storage account. This API can only be used to update one of tags, - * accountType, or customDomain per call. To update multiple of these - * properties, call the API multiple times with one change per call. This - * call does not change the storage keys for the account. If you want to - * change storage account keys, use the RegenerateKey operation. The - * location and name of the storage account cannot be changed after - * creation. + * storage account. In order to replace a custom domain, the old value must + * be cleared before a new value may be set. To clear a custom domain, + * simply update the custom domain with empty string. Then call update + * again with the new cutsom domain name. The update API can only be used + * to update one of tags, accountType, or customDomain per call. To update + * multiple of these properties, call the API multiple times with one + * change per call. This call does not change the storage keys for the + * account. If you want to change storage account keys, use the + * RegenerateKey operation. The location and name of the storage account + * cannot be changed after creation. * * @param resourceGroupName Required. The name of the resource group within - * the user’s subscription. + * the user's subscription. * @param accountName Required. The name of the storage account within the * specified resource group. Storage account names must be between 3 and 24 * characters in length and use numbers and lower-case letters only. @@ -2334,7 +2381,7 @@ public StorageAccountUpdateResponse update(String resourceGroupName, String acco url = url + "/providers/Microsoft.Storage/storageAccounts/"; url = url + URLEncoder.encode(accountName, "UTF-8"); ArrayList queryParameters = new ArrayList(); - queryParameters.add("api-version=" + "2015-05-01-preview"); + queryParameters.add("api-version=" + "2015-06-15"); if (queryParameters.size() > 0) { url = url + "?" + CollectionStringBuilder.join(queryParameters, "&"); } @@ -2480,7 +2527,7 @@ public StorageAccountUpdateResponse update(String resourceGroupName, String acco JsonNode provisioningStateValue = propertiesValue2.get("provisioningState"); if (provisioningStateValue != null && provisioningStateValue instanceof NullNode == false) { ProvisioningState provisioningStateInstance; - provisioningStateInstance = Enum.valueOf(ProvisioningState.class, provisioningStateValue.getTextValue()); + provisioningStateInstance = EnumUtility.fromString(ProvisioningState.class, provisioningStateValue.getTextValue()); storageAccountInstance.setProvisioningState(provisioningStateInstance); } @@ -2516,6 +2563,13 @@ public StorageAccountUpdateResponse update(String resourceGroupName, String acco tableInstance = new URI(tableValue.getTextValue()); primaryEndpointsInstance.setTable(tableInstance); } + + JsonNode fileValue = primaryEndpointsValue.get("file"); + if (fileValue != null && fileValue instanceof NullNode == false) { + URI fileInstance; + fileInstance = new URI(fileValue.getTextValue()); + primaryEndpointsInstance.setFile(fileInstance); + } } JsonNode primaryLocationValue = propertiesValue2.get("primaryLocation"); @@ -2528,7 +2582,7 @@ public StorageAccountUpdateResponse update(String resourceGroupName, String acco JsonNode statusOfPrimaryValue = propertiesValue2.get("statusOfPrimary"); if (statusOfPrimaryValue != null && statusOfPrimaryValue instanceof NullNode == false) { AccountStatus statusOfPrimaryInstance; - statusOfPrimaryInstance = Enum.valueOf(AccountStatus.class, statusOfPrimaryValue.getTextValue()); + statusOfPrimaryInstance = EnumUtility.fromString(AccountStatus.class, statusOfPrimaryValue.getTextValue()); storageAccountInstance.setStatusOfPrimary(statusOfPrimaryInstance); } @@ -2549,7 +2603,7 @@ public StorageAccountUpdateResponse update(String resourceGroupName, String acco JsonNode statusOfSecondaryValue = propertiesValue2.get("statusOfSecondary"); if (statusOfSecondaryValue != null && statusOfSecondaryValue instanceof NullNode == false) { AccountStatus statusOfSecondaryInstance; - statusOfSecondaryInstance = Enum.valueOf(AccountStatus.class, statusOfSecondaryValue.getTextValue()); + statusOfSecondaryInstance = EnumUtility.fromString(AccountStatus.class, statusOfSecondaryValue.getTextValue()); storageAccountInstance.setStatusOfSecondary(statusOfSecondaryInstance); } @@ -2605,6 +2659,13 @@ public StorageAccountUpdateResponse update(String resourceGroupName, String acco tableInstance2 = new URI(tableValue2.getTextValue()); secondaryEndpointsInstance.setTable(tableInstance2); } + + JsonNode fileValue2 = secondaryEndpointsValue.get("file"); + if (fileValue2 != null && fileValue2 instanceof NullNode == false) { + URI fileInstance2; + fileInstance2 = new URI(fileValue2.getTextValue()); + secondaryEndpointsInstance.setFile(fileInstance2); + } } } } diff --git a/resource-management/azure-mgmt-storage/src/main/java/com/microsoft/azure/management/storage/StorageManagementClient.java b/resource-management/azure-mgmt-storage/src/main/java/com/microsoft/azure/management/storage/StorageManagementClient.java index d6db3b2b3b01..f8cbeea2ba5c 100644 --- a/resource-management/azure-mgmt-storage/src/main/java/com/microsoft/azure/management/storage/StorageManagementClient.java +++ b/resource-management/azure-mgmt-storage/src/main/java/com/microsoft/azure/management/storage/StorageManagementClient.java @@ -27,7 +27,6 @@ import com.microsoft.windowsazure.core.FilterableService; import com.microsoft.windowsazure.credentials.SubscriptionCloudCredentials; import com.microsoft.windowsazure.exception.ServiceException; - import java.io.Closeable; import java.io.IOException; import java.net.URI; @@ -88,6 +87,12 @@ public interface StorageManagementClient extends Closeable, FilterableService 0) { - result.setRetryAfter(DatatypeConverter.parseInt(httpResponse.getFirstHeader("RetryAfter").getValue())); + if (httpResponse.getHeaders("Location").length > 0) { + result.setOperationStatusLink(httpResponse.getFirstHeader("Location").getValue()); + } + if (httpResponse.getHeaders("Retry-After").length > 0) { + result.setRetryAfter(DatatypeConverter.parseInt(httpResponse.getFirstHeader("Retry-After").getValue())); } if (httpResponse.getHeaders("x-ms-request-id").length > 0) { result.setRequestId(httpResponse.getFirstHeader("x-ms-request-id").getValue()); @@ -611,10 +606,10 @@ public StorageAccountCreateResponse getCreateOperationStatus(String operationSta if (statusCode == HttpStatus.SC_CONFLICT) { result.setStatus(OperationStatus.Failed); } - if (statusCode == HttpStatus.SC_INTERNAL_SERVER_ERROR) { + if (statusCode == HttpStatus.SC_ACCEPTED) { result.setStatus(OperationStatus.InProgress); } - if (statusCode == HttpStatus.SC_ACCEPTED) { + if (statusCode == HttpStatus.SC_INTERNAL_SERVER_ERROR) { result.setStatus(OperationStatus.InProgress); } if (statusCode == HttpStatus.SC_OK) { diff --git a/resource-management/azure-mgmt-storage/src/main/java/com/microsoft/azure/management/storage/UsageOperations.java b/resource-management/azure-mgmt-storage/src/main/java/com/microsoft/azure/management/storage/UsageOperations.java new file mode 100644 index 000000000000..3b40af02fb91 --- /dev/null +++ b/resource-management/azure-mgmt-storage/src/main/java/com/microsoft/azure/management/storage/UsageOperations.java @@ -0,0 +1,57 @@ +/** + * + * Copyright (c) Microsoft and contributors. All rights reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +// Warning: This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if the +// code is regenerated. + +package com.microsoft.azure.management.storage; + +import com.microsoft.azure.management.storage.models.UsageListResponse; +import com.microsoft.windowsazure.exception.ServiceException; +import java.io.IOException; +import java.net.URISyntaxException; +import java.util.concurrent.Future; + +/** +* Operations for listing usage. +*/ +public interface UsageOperations { + /** + * Gets the current usage count and the limit for the resources under the + * subscription. + * + * @throws IOException Signals that an I/O exception of some sort has + * occurred. This class is the general class of exceptions produced by + * failed or interrupted I/O operations. + * @throws ServiceException Thrown if an unexpected response is found. + * @throws URISyntaxException Thrown if there was an error parsing a URI in + * the response. + * @return The List Usages operation response. + */ + UsageListResponse list() throws IOException, ServiceException, URISyntaxException; + + /** + * Gets the current usage count and the limit for the resources under the + * subscription. + * + * @return The List Usages operation response. + */ + Future listAsync(); +} diff --git a/resource-management/azure-mgmt-storage/src/main/java/com/microsoft/azure/management/storage/UsageOperationsImpl.java b/resource-management/azure-mgmt-storage/src/main/java/com/microsoft/azure/management/storage/UsageOperationsImpl.java new file mode 100644 index 000000000000..23d6012a9a8a --- /dev/null +++ b/resource-management/azure-mgmt-storage/src/main/java/com/microsoft/azure/management/storage/UsageOperationsImpl.java @@ -0,0 +1,248 @@ +/** + * + * Copyright (c) Microsoft and contributors. All rights reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +// Warning: This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if the +// code is regenerated. + +package com.microsoft.azure.management.storage; + +import com.microsoft.azure.management.storage.models.Usage; +import com.microsoft.azure.management.storage.models.UsageListResponse; +import com.microsoft.azure.management.storage.models.UsageName; +import com.microsoft.azure.management.storage.models.UsageUnit; +import com.microsoft.windowsazure.core.ServiceOperations; +import com.microsoft.windowsazure.core.utils.CollectionStringBuilder; +import com.microsoft.windowsazure.core.utils.EnumUtility; +import com.microsoft.windowsazure.exception.ServiceException; +import com.microsoft.windowsazure.tracing.CloudTracing; +import java.io.IOException; +import java.io.InputStream; +import java.net.URISyntaxException; +import java.net.URLEncoder; +import java.util.ArrayList; +import java.util.HashMap; +import java.util.UUID; +import java.util.concurrent.Callable; +import java.util.concurrent.Future; +import org.apache.commons.io.IOUtils; +import org.apache.http.HttpResponse; +import org.apache.http.HttpStatus; +import org.apache.http.client.methods.HttpGet; +import org.codehaus.jackson.JsonNode; +import org.codehaus.jackson.map.ObjectMapper; +import org.codehaus.jackson.node.ArrayNode; +import org.codehaus.jackson.node.NullNode; + +/** +* Operations for listing usage. +*/ +public class UsageOperationsImpl implements ServiceOperations, UsageOperations { + /** + * Initializes a new instance of the UsageOperationsImpl class. + * + * @param client Reference to the service client. + */ + UsageOperationsImpl(StorageManagementClientImpl client) { + this.client = client; + } + + private StorageManagementClientImpl client; + + /** + * Gets a reference to the + * microsoft.azure.management.storage.StorageManagementClientImpl. + * @return The Client value. + */ + public StorageManagementClientImpl getClient() { + return this.client; + } + + /** + * Gets the current usage count and the limit for the resources under the + * subscription. + * + * @return The List Usages operation response. + */ + @Override + public Future listAsync() { + return this.getClient().getExecutorService().submit(new Callable() { + @Override + public UsageListResponse call() throws Exception { + return list(); + } + }); + } + + /** + * Gets the current usage count and the limit for the resources under the + * subscription. + * + * @throws IOException Signals that an I/O exception of some sort has + * occurred. This class is the general class of exceptions produced by + * failed or interrupted I/O operations. + * @throws ServiceException Thrown if an unexpected response is found. + * @throws URISyntaxException Thrown if there was an error parsing a URI in + * the response. + * @return The List Usages operation response. + */ + @Override + public UsageListResponse list() throws IOException, ServiceException, URISyntaxException { + // Validate + + // Tracing + boolean shouldTrace = CloudTracing.getIsEnabled(); + String invocationId = null; + if (shouldTrace) { + invocationId = Long.toString(CloudTracing.getNextInvocationId()); + HashMap tracingParameters = new HashMap(); + CloudTracing.enter(invocationId, this, "listAsync", tracingParameters); + } + + // Construct URL + String url = ""; + url = url + "/subscriptions/"; + if (this.getClient().getCredentials().getSubscriptionId() != null) { + url = url + URLEncoder.encode(this.getClient().getCredentials().getSubscriptionId(), "UTF-8"); + } + url = url + "/providers/Microsoft.Storage/usages"; + ArrayList queryParameters = new ArrayList(); + if (this.getClient().getApiVersion() != null) { + queryParameters.add("api-version=" + URLEncoder.encode(this.getClient().getApiVersion(), "UTF-8")); + } + if (queryParameters.size() > 0) { + url = url + "?" + CollectionStringBuilder.join(queryParameters, "&"); + } + String baseUrl = this.getClient().getBaseUri().toString(); + // Trim '/' character from the end of baseUrl and beginning of url. + if (baseUrl.charAt(baseUrl.length() - 1) == '/') { + baseUrl = baseUrl.substring(0, (baseUrl.length() - 1) + 0); + } + if (url.charAt(0) == '/') { + url = url.substring(1); + } + url = baseUrl + "/" + url; + url = url.replace(" ", "%20"); + + // Create HTTP transport objects + HttpGet httpRequest = new HttpGet(url); + + // Set Headers + httpRequest.setHeader("x-ms-client-request-id", UUID.randomUUID().toString()); + + // Send Request + HttpResponse httpResponse = null; + try { + if (shouldTrace) { + CloudTracing.sendRequest(invocationId, httpRequest); + } + httpResponse = this.getClient().getHttpClient().execute(httpRequest); + if (shouldTrace) { + CloudTracing.receiveResponse(invocationId, httpResponse); + } + int statusCode = httpResponse.getStatusLine().getStatusCode(); + if (statusCode != HttpStatus.SC_OK) { + ServiceException ex = ServiceException.createFromJson(httpRequest, null, httpResponse, httpResponse.getEntity()); + if (shouldTrace) { + CloudTracing.error(invocationId, ex); + } + throw ex; + } + + // Create Result + UsageListResponse result = null; + // Deserialize Response + if (statusCode == HttpStatus.SC_OK) { + InputStream responseContent = httpResponse.getEntity().getContent(); + result = new UsageListResponse(); + ObjectMapper objectMapper = new ObjectMapper(); + JsonNode responseDoc = null; + String responseDocContent = IOUtils.toString(responseContent); + if (responseDocContent == null == false && responseDocContent.length() > 0) { + responseDoc = objectMapper.readTree(responseDocContent); + } + + if (responseDoc != null && responseDoc instanceof NullNode == false) { + JsonNode valueArray = responseDoc.get("value"); + if (valueArray != null && valueArray instanceof NullNode == false) { + for (JsonNode valueValue : ((ArrayNode) valueArray)) { + Usage usageInstance = new Usage(); + result.getUsages().add(usageInstance); + + JsonNode unitValue = valueValue.get("unit"); + if (unitValue != null && unitValue instanceof NullNode == false) { + UsageUnit unitInstance; + unitInstance = EnumUtility.fromString(UsageUnit.class, unitValue.getTextValue()); + usageInstance.setUnit(unitInstance); + } + + JsonNode currentValueValue = valueValue.get("currentValue"); + if (currentValueValue != null && currentValueValue instanceof NullNode == false) { + int currentValueInstance; + currentValueInstance = currentValueValue.getIntValue(); + usageInstance.setCurrentValue(currentValueInstance); + } + + JsonNode limitValue = valueValue.get("limit"); + if (limitValue != null && limitValue instanceof NullNode == false) { + int limitInstance; + limitInstance = limitValue.getIntValue(); + usageInstance.setLimit(limitInstance); + } + + JsonNode nameValue = valueValue.get("name"); + if (nameValue != null && nameValue instanceof NullNode == false) { + UsageName nameInstance = new UsageName(); + usageInstance.setName(nameInstance); + + JsonNode valueValue2 = nameValue.get("value"); + if (valueValue2 != null && valueValue2 instanceof NullNode == false) { + String valueInstance; + valueInstance = valueValue2.getTextValue(); + nameInstance.setValue(valueInstance); + } + + JsonNode localizedValueValue = nameValue.get("localizedValue"); + if (localizedValueValue != null && localizedValueValue instanceof NullNode == false) { + String localizedValueInstance; + localizedValueInstance = localizedValueValue.getTextValue(); + nameInstance.setLocalizedValue(localizedValueInstance); + } + } + } + } + } + + } + result.setStatusCode(statusCode); + if (httpResponse.getHeaders("x-ms-request-id").length > 0) { + result.setRequestId(httpResponse.getFirstHeader("x-ms-request-id").getValue()); + } + + if (shouldTrace) { + CloudTracing.exit(invocationId, result); + } + return result; + } finally { + if (httpResponse != null && httpResponse.getEntity() != null) { + httpResponse.getEntity().getContent().close(); + } + } + } +} diff --git a/resource-management/azure-mgmt-storage/src/main/java/com/microsoft/azure/management/storage/models/Endpoints.java b/resource-management/azure-mgmt-storage/src/main/java/com/microsoft/azure/management/storage/models/Endpoints.java index c43f927389f7..893f136e03a0 100644 --- a/resource-management/azure-mgmt-storage/src/main/java/com/microsoft/azure/management/storage/models/Endpoints.java +++ b/resource-management/azure-mgmt-storage/src/main/java/com/microsoft/azure/management/storage/models/Endpoints.java @@ -48,6 +48,24 @@ public void setBlob(final URI blobValue) { this.blob = blobValue; } + private URI file; + + /** + * Optional. Gets the file endpoint. + * @return The File value. + */ + public URI getFile() { + return this.file; + } + + /** + * Optional. Gets the file endpoint. + * @param fileValue The File value. + */ + public void setFile(final URI fileValue) { + this.file = fileValue; + } + private URI queue; /** diff --git a/resource-management/azure-mgmt-storage/src/main/java/com/microsoft/azure/management/storage/models/StorageAccount.java b/resource-management/azure-mgmt-storage/src/main/java/com/microsoft/azure/management/storage/models/StorageAccount.java index 39701dd8a492..21b75f3c757d 100644 --- a/resource-management/azure-mgmt-storage/src/main/java/com/microsoft/azure/management/storage/models/StorageAccount.java +++ b/resource-management/azure-mgmt-storage/src/main/java/com/microsoft/azure/management/storage/models/StorageAccount.java @@ -24,7 +24,6 @@ package com.microsoft.azure.management.storage.models; import com.microsoft.windowsazure.core.ResourceBaseExtended; - import java.util.Calendar; /** diff --git a/resource-management/azure-mgmt-storage/src/main/java/com/microsoft/azure/management/storage/models/StorageAccountCreateParameters.java b/resource-management/azure-mgmt-storage/src/main/java/com/microsoft/azure/management/storage/models/StorageAccountCreateParameters.java index 6b269e9400c4..50f483a96dd4 100644 --- a/resource-management/azure-mgmt-storage/src/main/java/com/microsoft/azure/management/storage/models/StorageAccountCreateParameters.java +++ b/resource-management/azure-mgmt-storage/src/main/java/com/microsoft/azure/management/storage/models/StorageAccountCreateParameters.java @@ -24,7 +24,6 @@ package com.microsoft.azure.management.storage.models; import com.microsoft.windowsazure.core.LazyHashMap; - import java.util.HashMap; /** diff --git a/resource-management/azure-mgmt-storage/src/main/java/com/microsoft/azure/management/storage/models/StorageAccountListResponse.java b/resource-management/azure-mgmt-storage/src/main/java/com/microsoft/azure/management/storage/models/StorageAccountListResponse.java index f0124d323efe..9e5ce932e31b 100644 --- a/resource-management/azure-mgmt-storage/src/main/java/com/microsoft/azure/management/storage/models/StorageAccountListResponse.java +++ b/resource-management/azure-mgmt-storage/src/main/java/com/microsoft/azure/management/storage/models/StorageAccountListResponse.java @@ -25,33 +25,13 @@ import com.microsoft.windowsazure.core.LazyArrayList; import com.microsoft.windowsazure.core.OperationResponse; - import java.util.ArrayList; +import java.util.Iterator; /** * The list storage accounts operation response. */ -public class StorageAccountListResponse extends OperationResponse { - private String nextLink; - - /** - * Optional. Gets the link to the next set of results. Currently this will - * always be empty as the API does not support pagination. - * @return The NextLink value. - */ - public String getNextLink() { - return this.nextLink; - } - - /** - * Optional. Gets the link to the next set of results. Currently this will - * always be empty as the API does not support pagination. - * @param nextLinkValue The NextLink value. - */ - public void setNextLink(final String nextLinkValue) { - this.nextLink = nextLinkValue; - } - +public class StorageAccountListResponse extends OperationResponse implements Iterable { private ArrayList storageAccounts; /** @@ -78,4 +58,12 @@ public StorageAccountListResponse() { super(); this.setStorageAccounts(new LazyArrayList()); } + + /** + * Gets the sequence of StorageAccounts. + * + */ + public Iterator iterator() { + return this.getStorageAccounts().iterator(); + } } diff --git a/resource-management/azure-mgmt-storage/src/main/java/com/microsoft/azure/management/storage/models/StorageAccountUpdateParameters.java b/resource-management/azure-mgmt-storage/src/main/java/com/microsoft/azure/management/storage/models/StorageAccountUpdateParameters.java index a87259bece88..b399b99e8cbf 100644 --- a/resource-management/azure-mgmt-storage/src/main/java/com/microsoft/azure/management/storage/models/StorageAccountUpdateParameters.java +++ b/resource-management/azure-mgmt-storage/src/main/java/com/microsoft/azure/management/storage/models/StorageAccountUpdateParameters.java @@ -24,7 +24,6 @@ package com.microsoft.azure.management.storage.models; import com.microsoft.windowsazure.core.LazyHashMap; - import java.util.HashMap; /** diff --git a/resource-management/azure-mgmt-storage/src/main/java/com/microsoft/azure/management/storage/models/Usage.java b/resource-management/azure-mgmt-storage/src/main/java/com/microsoft/azure/management/storage/models/Usage.java new file mode 100644 index 000000000000..42ccb792504c --- /dev/null +++ b/resource-management/azure-mgmt-storage/src/main/java/com/microsoft/azure/management/storage/models/Usage.java @@ -0,0 +1,105 @@ +/** + * + * Copyright (c) Microsoft and contributors. All rights reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +// Warning: This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if the +// code is regenerated. + +package com.microsoft.azure.management.storage.models; + +/** +* Describes Storage Resource Usage. +*/ +public class Usage { + private int currentValue; + + /** + * Required. Gets the current count of the allocated resources in the + * subscription. + * @return The CurrentValue value. + */ + public int getCurrentValue() { + return this.currentValue; + } + + /** + * Required. Gets the current count of the allocated resources in the + * subscription. + * @param currentValueValue The CurrentValue value. + */ + public void setCurrentValue(final int currentValueValue) { + this.currentValue = currentValueValue; + } + + private int limit; + + /** + * Required. Gets the maximum count of the resources that can be allocated + * in the subscription. + * @return The Limit value. + */ + public int getLimit() { + return this.limit; + } + + /** + * Required. Gets the maximum count of the resources that can be allocated + * in the subscription. + * @param limitValue The Limit value. + */ + public void setLimit(final int limitValue) { + this.limit = limitValue; + } + + private UsageName name; + + /** + * Required. Gets the name of the type of usage. + * @return The Name value. + */ + public UsageName getName() { + return this.name; + } + + /** + * Required. Gets the name of the type of usage. + * @param nameValue The Name value. + */ + public void setName(final UsageName nameValue) { + this.name = nameValue; + } + + private UsageUnit unit; + + /** + * Required. Gets the unit of measurement. + * @return The Unit value. + */ + public UsageUnit getUnit() { + return this.unit; + } + + /** + * Required. Gets the unit of measurement. + * @param unitValue The Unit value. + */ + public void setUnit(final UsageUnit unitValue) { + this.unit = unitValue; + } +} diff --git a/resource-management/azure-mgmt-storage/src/main/java/com/microsoft/azure/management/storage/models/UsageListResponse.java b/resource-management/azure-mgmt-storage/src/main/java/com/microsoft/azure/management/storage/models/UsageListResponse.java new file mode 100644 index 000000000000..21cf1b6ce778 --- /dev/null +++ b/resource-management/azure-mgmt-storage/src/main/java/com/microsoft/azure/management/storage/models/UsageListResponse.java @@ -0,0 +1,69 @@ +/** + * + * Copyright (c) Microsoft and contributors. All rights reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +// Warning: This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if the +// code is regenerated. + +package com.microsoft.azure.management.storage.models; + +import com.microsoft.windowsazure.core.LazyArrayList; +import com.microsoft.windowsazure.core.OperationResponse; +import java.util.ArrayList; +import java.util.Iterator; + +/** +* The List Usages operation response. +*/ +public class UsageListResponse extends OperationResponse implements Iterable { + private ArrayList usages; + + /** + * Optional. Gets or sets the list Storage Resource Usages. + * @return The Usages value. + */ + public ArrayList getUsages() { + return this.usages; + } + + /** + * Optional. Gets or sets the list Storage Resource Usages. + * @param usagesValue The Usages value. + */ + public void setUsages(final ArrayList usagesValue) { + this.usages = usagesValue; + } + + /** + * Initializes a new instance of the UsageListResponse class. + * + */ + public UsageListResponse() { + super(); + this.setUsages(new LazyArrayList()); + } + + /** + * Gets the sequence of Usages. + * + */ + public Iterator iterator() { + return this.getUsages().iterator(); + } +} diff --git a/resource-management/azure-mgmt-storage/src/main/java/com/microsoft/azure/management/storage/models/UsageName.java b/resource-management/azure-mgmt-storage/src/main/java/com/microsoft/azure/management/storage/models/UsageName.java new file mode 100644 index 000000000000..37e8910f7047 --- /dev/null +++ b/resource-management/azure-mgmt-storage/src/main/java/com/microsoft/azure/management/storage/models/UsageName.java @@ -0,0 +1,65 @@ +/** + * + * Copyright (c) Microsoft and contributors. All rights reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +// Warning: This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if the +// code is regenerated. + +package com.microsoft.azure.management.storage.models; + +/** +* The Usage Names. +*/ +public class UsageName { + private String localizedValue; + + /** + * Optional. Gets a localized string describing the resource name. + * @return The LocalizedValue value. + */ + public String getLocalizedValue() { + return this.localizedValue; + } + + /** + * Optional. Gets a localized string describing the resource name. + * @param localizedValueValue The LocalizedValue value. + */ + public void setLocalizedValue(final String localizedValueValue) { + this.localizedValue = localizedValueValue; + } + + private String value; + + /** + * Optional. Gets a string describing the resource name. + * @return The Value value. + */ + public String getValue() { + return this.value; + } + + /** + * Optional. Gets a string describing the resource name. + * @param valueValue The Value value. + */ + public void setValue(final String valueValue) { + this.value = valueValue; + } +} diff --git a/resource-management/azure-mgmt-storage/src/main/java/com/microsoft/azure/management/storage/models/UsageUnit.java b/resource-management/azure-mgmt-storage/src/main/java/com/microsoft/azure/management/storage/models/UsageUnit.java new file mode 100644 index 000000000000..03c65adfdf90 --- /dev/null +++ b/resource-management/azure-mgmt-storage/src/main/java/com/microsoft/azure/management/storage/models/UsageUnit.java @@ -0,0 +1,59 @@ +/** + * + * Copyright (c) Microsoft and contributors. All rights reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +// Warning: This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if the +// code is regenerated. + +package com.microsoft.azure.management.storage.models; + +/** +* The usage unit. +*/ +public enum UsageUnit { + /** + * The count usage unit. + */ + Count, + + /** + * The bytes usage unit. + */ + Bytes, + + /** + * The seconds usage unit. + */ + Seconds, + + /** + * The percent usage unit. + */ + Percent, + + /** + * The counts per second usage unit. + */ + CountsPerSecond, + + /** + * The bytes per second usage unit. + */ + BytesPerSecond, +} diff --git a/resource-management/azure-mgmt-utility/src/main/java/com/microsoft/azure/utility/StorageHelper.java b/resource-management/azure-mgmt-utility/src/main/java/com/microsoft/azure/utility/StorageHelper.java index 35beca0b32ea..045aeb7b7abc 100644 --- a/resource-management/azure-mgmt-utility/src/main/java/com/microsoft/azure/utility/StorageHelper.java +++ b/resource-management/azure-mgmt-utility/src/main/java/com/microsoft/azure/utility/StorageHelper.java @@ -219,7 +219,7 @@ public static StorageAccountRegenerateKeyResponse regenerateStorageAccountKey( service = Executors.newFixedThreadPool(1); future = storageManagementClient.getStorageAccountsOperations() .regenerateKeyAsync(context.getResourceGroupName(), - storageAccountName, keyName); + storageAccountName, keyName.name()); response = future.get(); } catch (Exception ex) { throw ex; diff --git a/resource-management/azure-mgmt-utility/src/test/resources/session-records/TestExtImgListVersionsFilters.json b/resource-management/azure-mgmt-utility/src/test/resources/session-records/TestExtImgListVersionsFilters.json index 8ab5e4be1ade..166e1d8bbbf5 100644 --- a/resource-management/azure-mgmt-utility/src/test/resources/session-records/TestExtImgListVersionsFilters.json +++ b/resource-management/azure-mgmt-utility/src/test/resources/session-records/TestExtImgListVersionsFilters.json @@ -1 +1 @@ -[{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/providers/Microsoft.Compute/locations/SouthEastAsia/publishers/Microsoft.Compute/artifacttypes/vmextension/types/VMAccessAgent/versions?api-version=2015-06-15&$filter=startswith(name,'2.0')","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14998","StatusCode":"200","x-ms-correlation-request-id":"fb177e02-2448-449c-a1c9-b03e92e2c634","Date":"Fri, 21 Aug 2015 00:01:31 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150821T000132Z:fb177e02-2448-449c-a1c9-b03e92e2c634","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"273","x-ms-request-id":"b32c2d1c-bc96-469e-b730-6f5e3eeaba4e","Body":"[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2.0\",\r\n \"id\": \"/Subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/2.0\"\r\n }\r\n]","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/providers/Microsoft.Compute/locations/SouthEastAsia/publishers/Microsoft.Compute/artifacttypes/vmextension/types/VMAccessAgent/versions?api-version=2015-06-15&$filter=startswith(name,'1.0')","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14997","StatusCode":"200","x-ms-correlation-request-id":"e5bdb858-2bb4-4ae0-97cc-6d84db6fae9d","Date":"Fri, 21 Aug 2015 00:01:32 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150821T000133Z:e5bdb858-2bb4-4ae0-97cc-6d84db6fae9d","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"2","x-ms-request-id":"2a0d45d6-02db-4c90-8f78-e8ecffd32115","Body":"[]","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/providers/Microsoft.Compute/locations/SouthEastAsia/publishers/Microsoft.Compute/artifacttypes/vmextension/types/VMAccessAgent/versions?api-version=2015-06-15&$top=1","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14996","StatusCode":"200","x-ms-correlation-request-id":"2b6f8039-b505-4ed7-ae7d-5ce21ff2a36a","Date":"Fri, 21 Aug 2015 00:01:33 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150821T000134Z:2b6f8039-b505-4ed7-ae7d-5ce21ff2a36a","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"273","x-ms-request-id":"b1a67075-f07a-4ac0-8b65-ade4369b6c2d","Body":"[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2.0\",\r\n \"id\": \"/Subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/2.0\"\r\n }\r\n]","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/providers/Microsoft.Compute/locations/SouthEastAsia/publishers/Microsoft.Compute/artifacttypes/vmextension/types/VMAccessAgent/versions?api-version=2015-06-15&$top=0","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14995","StatusCode":"200","x-ms-correlation-request-id":"abcc096e-5c77-4648-ab5d-d08df1fba33c","Date":"Fri, 21 Aug 2015 00:01:34 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150821T000135Z:abcc096e-5c77-4648-ab5d-d08df1fba33c","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"2","x-ms-request-id":"74f835d7-27e8-4974-b12d-2bcad4c8c381","Body":"[]","Content-Type":"application/json; charset=utf-8"}] \ No newline at end of file +[{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/SouthEastAsia/publishers/Microsoft.Compute/artifacttypes/vmextension/types/VMAccessAgent/versions?api-version=2015-06-15&$filter=startswith(name,'2.0')","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14997","StatusCode":"200","x-ms-correlation-request-id":"2ccdab3a-61e6-4d90-991f-cdbc9cfd30c7","Date":"Mon, 19 Oct 2015 19:57:58 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T195759Z:2ccdab3a-61e6-4d90-991f-cdbc9cfd30c7","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"273","x-ms-request-id":"bdea010b-a8c0-49c9-bdfc-c45d0a0c7a95","Body":"[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2.0\",\r\n \"id\": \"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/2.0\"\r\n }\r\n]","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/SouthEastAsia/publishers/Microsoft.Compute/artifacttypes/vmextension/types/VMAccessAgent/versions?api-version=2015-06-15&$filter=startswith(name,'1.0')","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14996","StatusCode":"200","x-ms-correlation-request-id":"0b0d215d-e88f-4bf2-b7c1-bba80fc8c54b","Date":"Mon, 19 Oct 2015 19:57:59 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T195800Z:0b0d215d-e88f-4bf2-b7c1-bba80fc8c54b","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"2","x-ms-request-id":"75bd682c-9b7b-4fa9-b57c-d9a909c51669","Body":"[]","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/SouthEastAsia/publishers/Microsoft.Compute/artifacttypes/vmextension/types/VMAccessAgent/versions?api-version=2015-06-15&$top=1","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14995","StatusCode":"200","x-ms-correlation-request-id":"6b7f0bb4-f2cc-4ab8-b53e-bad3455d9037","Date":"Mon, 19 Oct 2015 19:58:00 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T195801Z:6b7f0bb4-f2cc-4ab8-b53e-bad3455d9037","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"273","x-ms-request-id":"0b8e6222-9f98-44bb-92ab-c45de4a2b9c8","Body":"[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2.0\",\r\n \"id\": \"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/2.0\"\r\n }\r\n]","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/SouthEastAsia/publishers/Microsoft.Compute/artifacttypes/vmextension/types/VMAccessAgent/versions?api-version=2015-06-15&$top=0","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14994","StatusCode":"200","x-ms-correlation-request-id":"14b8e373-0d73-4099-ad9f-7248944e7b93","Date":"Mon, 19 Oct 2015 19:58:01 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T195802Z:14b8e373-0d73-4099-ad9f-7248944e7b93","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"2","x-ms-request-id":"73887eea-b44a-4658-9a0f-868568536c3f","Body":"[]","Content-Type":"application/json; charset=utf-8"}] \ No newline at end of file diff --git a/resource-management/azure-mgmt-utility/src/test/resources/session-records/cleanResourceGroupsOperations.json b/resource-management/azure-mgmt-utility/src/test/resources/session-records/cleanResourceGroupsOperations.json index efe1f8bbc986..1b6dcad5b495 100644 --- a/resource-management/azure-mgmt-utility/src/test/resources/session-records/cleanResourceGroupsOperations.json +++ b/resource-management/azure-mgmt-utility/src/test/resources/session-records/cleanResourceGroupsOperations.json @@ -1 +1 @@ -[{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/bca17b84-9f14-4ccc-abf4-1164e2c0a3bf/resourcegroups?api-version=2014-04-01-preview","Content-Type":"application/json; charset=utf-8"},{"Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14967","StatusCode":"200","x-ms-correlation-request-id":"c5a121d4-9286-41f0-8bc2-447b94e3e642","Date":"Mon, 31 Aug 2015 23:06:42 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150831T230643Z:c5a121d4-9286-41f0-8bc2-447b94e3e642","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"3745","x-ms-request-id":"c5a121d4-9286-41f0-8bc2-447b94e3e642","Body":"{\"value\":[{\"id\":\"/subscriptions/bca17b84-9f14-4ccc-abf4-1164e2c0a3bf/resourceGroups/javatestrgnczfgy\",\"name\":\"javatestrgnczfgy\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Deleting\"}},{\"id\":\"/subscriptions/bca17b84-9f14-4ccc-abf4-1164e2c0a3bf/resourceGroups/javatestrgneyukl\",\"name\":\"javatestrgneyukl\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Deleting\"}},{\"id\":\"/subscriptions/bca17b84-9f14-4ccc-abf4-1164e2c0a3bf/resourceGroups/javatestrgngjcog\",\"name\":\"javatestrgngjcog\",\"location\":\"southeastasia\",\"properties\":{\"provisioningState\":\"Deleting\"}},{\"id\":\"/subscriptions/bca17b84-9f14-4ccc-abf4-1164e2c0a3bf/resourceGroups/javatestrgnitrno\",\"name\":\"javatestrgnitrno\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Deleting\"}},{\"id\":\"/subscriptions/bca17b84-9f14-4ccc-abf4-1164e2c0a3bf/resourceGroups/javatestrgnknlzf\",\"name\":\"javatestrgnknlzf\",\"location\":\"southeastasia\",\"properties\":{\"provisioningState\":\"Deleting\"}},{\"id\":\"/subscriptions/bca17b84-9f14-4ccc-abf4-1164e2c0a3bf/resourceGroups/javatestrgnouggj\",\"name\":\"javatestrgnouggj\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Deleting\"}},{\"id\":\"/subscriptions/bca17b84-9f14-4ccc-abf4-1164e2c0a3bf/resourceGroups/javatestrgnpmdvf\",\"name\":\"javatestrgnpmdvf\",\"location\":\"southeastasia\",\"properties\":{\"provisioningState\":\"Deleting\"}},{\"id\":\"/subscriptions/bca17b84-9f14-4ccc-abf4-1164e2c0a3bf/resourceGroups/javatestrgnsrivw\",\"name\":\"javatestrgnsrivw\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Deleting\"}},{\"id\":\"/subscriptions/bca17b84-9f14-4ccc-abf4-1164e2c0a3bf/resourceGroups/javatestrgnugphg\",\"name\":\"javatestrgnugphg\",\"location\":\"southeastasia\",\"properties\":{\"provisioningState\":\"Deleting\"}},{\"id\":\"/subscriptions/bca17b84-9f14-4ccc-abf4-1164e2c0a3bf/resourceGroups/javatestrgnuwbhe\",\"name\":\"javatestrgnuwbhe\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Deleting\"}},{\"id\":\"/subscriptions/bca17b84-9f14-4ccc-abf4-1164e2c0a3bf/resourceGroups/javatestrgnvvfqn\",\"name\":\"javatestrgnvvfqn\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Deleting\"}},{\"id\":\"/subscriptions/bca17b84-9f14-4ccc-abf4-1164e2c0a3bf/resourceGroups/javatestrgnwrqhn\",\"name\":\"javatestrgnwrqhn\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Deleting\"}},{\"id\":\"/subscriptions/bca17b84-9f14-4ccc-abf4-1164e2c0a3bf/resourceGroups/javatestrgnwszot\",\"name\":\"javatestrgnwszot\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Deleting\"}},{\"id\":\"/subscriptions/bca17b84-9f14-4ccc-abf4-1164e2c0a3bf/resourceGroups/javatestrgnwxjnp\",\"name\":\"javatestrgnwxjnp\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/bca17b84-9f14-4ccc-abf4-1164e2c0a3bf/resourceGroups/javatestrgnygkkh\",\"name\":\"javatestrgnygkkh\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/bca17b84-9f14-4ccc-abf4-1164e2c0a3bf/resourceGroups/javatestrgnynkcy\",\"name\":\"javatestrgnynkcy\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/bca17b84-9f14-4ccc-abf4-1164e2c0a3bf/resourceGroups/javatestrgnyqscd\",\"name\":\"javatestrgnyqscd\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/bca17b84-9f14-4ccc-abf4-1164e2c0a3bf/resourceGroups/javatestrgnyzojj\",\"name\":\"javatestrgnyzojj\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Deleting\"}},{\"id\":\"/subscriptions/bca17b84-9f14-4ccc-abf4-1164e2c0a3bf/resourceGroups/javatestrgnzchay\",\"name\":\"javatestrgnzchay\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/bca17b84-9f14-4ccc-abf4-1164e2c0a3bf/resourceGroups/javatestrgnzjvoq\",\"name\":\"javatestrgnzjvoq\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}]}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"DELETE","Uri":"/subscriptions/bca17b84-9f14-4ccc-abf4-1164e2c0a3bf/resourcegroups/javatestrgnczfgy?api-version=2014-04-01-preview","Content-Type":"application/json; charset=utf-8"},{"x-ms-ratelimit-remaining-subscription-writes":"1179","Pragma":"no-cache","StatusCode":"202","x-ms-correlation-request-id":"36273aa8-b8e1-4d40-833a-27f003ea2338","Date":"Mon, 31 Aug 2015 23:06:43 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"15","x-ms-routing-request-id":"WESTUS:20150831T230644Z:36273aa8-b8e1-4d40-833a-27f003ea2338","Expires":"-1","Content-Length":"0","x-ms-request-id":"36273aa8-b8e1-4d40-833a-27f003ea2338","Body":"","Location":"https://management.azure.com/subscriptions/bca17b84-9f14-4ccc-abf4-1164e2c0a3bf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBVEVTVFJHTkNaRkdZLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview"},{"User-Agent":"Azure-SDK-For-Java","Method":"DELETE","Uri":"/subscriptions/bca17b84-9f14-4ccc-abf4-1164e2c0a3bf/resourcegroups/javatestrgneyukl?api-version=2014-04-01-preview","Content-Type":"application/json; charset=utf-8"},{"x-ms-ratelimit-remaining-subscription-writes":"1178","Pragma":"no-cache","StatusCode":"202","x-ms-correlation-request-id":"89ec4c55-cbe4-4896-b476-6ef0528ce624","Date":"Mon, 31 Aug 2015 23:06:43 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"15","x-ms-routing-request-id":"WESTUS:20150831T230644Z:89ec4c55-cbe4-4896-b476-6ef0528ce624","Expires":"-1","Content-Length":"0","x-ms-request-id":"89ec4c55-cbe4-4896-b476-6ef0528ce624","Body":"","Location":"https://management.azure.com/subscriptions/bca17b84-9f14-4ccc-abf4-1164e2c0a3bf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBVEVTVFJHTkVZVUtMLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview"},{"User-Agent":"Azure-SDK-For-Java","Method":"DELETE","Uri":"/subscriptions/bca17b84-9f14-4ccc-abf4-1164e2c0a3bf/resourcegroups/javatestrgngjcog?api-version=2014-04-01-preview","Content-Type":"application/json; charset=utf-8"},{"x-ms-ratelimit-remaining-subscription-writes":"1177","Pragma":"no-cache","StatusCode":"202","x-ms-correlation-request-id":"2b80939f-e44e-4ec3-92b2-907be7390884","Date":"Mon, 31 Aug 2015 23:06:46 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"15","x-ms-routing-request-id":"WESTUS:20150831T230647Z:2b80939f-e44e-4ec3-92b2-907be7390884","Expires":"-1","Content-Length":"0","x-ms-request-id":"2b80939f-e44e-4ec3-92b2-907be7390884","Body":"","Location":"https://management.azure.com/subscriptions/bca17b84-9f14-4ccc-abf4-1164e2c0a3bf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBVEVTVFJHTkdKQ09HLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview"},{"User-Agent":"Azure-SDK-For-Java","Method":"DELETE","Uri":"/subscriptions/bca17b84-9f14-4ccc-abf4-1164e2c0a3bf/resourcegroups/javatestrgnitrno?api-version=2014-04-01-preview","Content-Type":"application/json; charset=utf-8"},{"x-ms-ratelimit-remaining-subscription-writes":"1176","Pragma":"no-cache","StatusCode":"202","x-ms-correlation-request-id":"7811da98-1a17-43ca-b87d-da7d4733dbff","Date":"Mon, 31 Aug 2015 23:06:46 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"15","x-ms-routing-request-id":"WESTUS:20150831T230647Z:7811da98-1a17-43ca-b87d-da7d4733dbff","Expires":"-1","Content-Length":"0","x-ms-request-id":"7811da98-1a17-43ca-b87d-da7d4733dbff","Body":"","Location":"https://management.azure.com/subscriptions/bca17b84-9f14-4ccc-abf4-1164e2c0a3bf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBVEVTVFJHTklUUk5PLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview"},{"User-Agent":"Azure-SDK-For-Java","Method":"DELETE","Uri":"/subscriptions/bca17b84-9f14-4ccc-abf4-1164e2c0a3bf/resourcegroups/javatestrgnknlzf?api-version=2014-04-01-preview","Content-Type":"application/json; charset=utf-8"},{"x-ms-ratelimit-remaining-subscription-writes":"1175","Pragma":"no-cache","StatusCode":"202","x-ms-correlation-request-id":"551d5be2-a84c-477a-bdc6-1cf96bdbc140","Date":"Mon, 31 Aug 2015 23:06:49 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"15","x-ms-routing-request-id":"WESTUS:20150831T230649Z:551d5be2-a84c-477a-bdc6-1cf96bdbc140","Expires":"-1","Content-Length":"0","x-ms-request-id":"551d5be2-a84c-477a-bdc6-1cf96bdbc140","Body":"","Location":"https://management.azure.com/subscriptions/bca17b84-9f14-4ccc-abf4-1164e2c0a3bf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBVEVTVFJHTktOTFpGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview"},{"User-Agent":"Azure-SDK-For-Java","Method":"DELETE","Uri":"/subscriptions/bca17b84-9f14-4ccc-abf4-1164e2c0a3bf/resourcegroups/javatestrgnouggj?api-version=2014-04-01-preview","Content-Type":"application/json; charset=utf-8"},{"x-ms-ratelimit-remaining-subscription-writes":"1174","Pragma":"no-cache","StatusCode":"202","x-ms-correlation-request-id":"d3a4d0b2-67f9-460c-afe4-243919378b6c","Date":"Mon, 31 Aug 2015 23:06:49 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"15","x-ms-routing-request-id":"WESTUS:20150831T230649Z:d3a4d0b2-67f9-460c-afe4-243919378b6c","Expires":"-1","Content-Length":"0","x-ms-request-id":"d3a4d0b2-67f9-460c-afe4-243919378b6c","Body":"","Location":"https://management.azure.com/subscriptions/bca17b84-9f14-4ccc-abf4-1164e2c0a3bf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBVEVTVFJHTk9VR0dKLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview"},{"User-Agent":"Azure-SDK-For-Java","Method":"DELETE","Uri":"/subscriptions/bca17b84-9f14-4ccc-abf4-1164e2c0a3bf/resourcegroups/javatestrgnpmdvf?api-version=2014-04-01-preview","Content-Type":"application/json; charset=utf-8"},{"x-ms-ratelimit-remaining-subscription-writes":"1173","Pragma":"no-cache","StatusCode":"202","x-ms-correlation-request-id":"2affc6c0-c094-4528-86d5-1708abe3e649","Date":"Mon, 31 Aug 2015 23:06:51 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"15","x-ms-routing-request-id":"WESTUS:20150831T230652Z:2affc6c0-c094-4528-86d5-1708abe3e649","Expires":"-1","Content-Length":"0","x-ms-request-id":"2affc6c0-c094-4528-86d5-1708abe3e649","Body":"","Location":"https://management.azure.com/subscriptions/bca17b84-9f14-4ccc-abf4-1164e2c0a3bf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBVEVTVFJHTlBNRFZGLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview"},{"User-Agent":"Azure-SDK-For-Java","Method":"DELETE","Uri":"/subscriptions/bca17b84-9f14-4ccc-abf4-1164e2c0a3bf/resourcegroups/javatestrgnsrivw?api-version=2014-04-01-preview","Content-Type":"application/json; charset=utf-8"},{"x-ms-ratelimit-remaining-subscription-writes":"1172","Pragma":"no-cache","StatusCode":"202","x-ms-correlation-request-id":"fe950b24-8948-4e85-aef8-764fadacef37","Date":"Mon, 31 Aug 2015 23:06:52 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"15","x-ms-routing-request-id":"WESTUS:20150831T230652Z:fe950b24-8948-4e85-aef8-764fadacef37","Expires":"-1","Content-Length":"0","x-ms-request-id":"fe950b24-8948-4e85-aef8-764fadacef37","Body":"","Location":"https://management.azure.com/subscriptions/bca17b84-9f14-4ccc-abf4-1164e2c0a3bf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBVEVTVFJHTlNSSVZXLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview"},{"User-Agent":"Azure-SDK-For-Java","Method":"DELETE","Uri":"/subscriptions/bca17b84-9f14-4ccc-abf4-1164e2c0a3bf/resourcegroups/javatestrgnugphg?api-version=2014-04-01-preview","Content-Type":"application/json; charset=utf-8"},{"x-ms-ratelimit-remaining-subscription-writes":"1171","Pragma":"no-cache","StatusCode":"202","x-ms-correlation-request-id":"33418ede-7d45-4ea5-96e9-58470a7fa1e8","Date":"Mon, 31 Aug 2015 23:06:54 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"15","x-ms-routing-request-id":"WESTUS:20150831T230654Z:33418ede-7d45-4ea5-96e9-58470a7fa1e8","Expires":"-1","Content-Length":"0","x-ms-request-id":"33418ede-7d45-4ea5-96e9-58470a7fa1e8","Body":"","Location":"https://management.azure.com/subscriptions/bca17b84-9f14-4ccc-abf4-1164e2c0a3bf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBVEVTVFJHTlVHUEhHLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview"},{"User-Agent":"Azure-SDK-For-Java","Method":"DELETE","Uri":"/subscriptions/bca17b84-9f14-4ccc-abf4-1164e2c0a3bf/resourcegroups/javatestrgnuwbhe?api-version=2014-04-01-preview","Content-Type":"application/json; charset=utf-8"},{"x-ms-ratelimit-remaining-subscription-writes":"1170","Pragma":"no-cache","StatusCode":"202","x-ms-correlation-request-id":"fe8c9db6-e448-4e7f-b433-3ae8ee4ac43d","Date":"Mon, 31 Aug 2015 23:06:54 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"15","x-ms-routing-request-id":"WESTUS:20150831T230654Z:fe8c9db6-e448-4e7f-b433-3ae8ee4ac43d","Expires":"-1","Content-Length":"0","x-ms-request-id":"fe8c9db6-e448-4e7f-b433-3ae8ee4ac43d","Body":"","Location":"https://management.azure.com/subscriptions/bca17b84-9f14-4ccc-abf4-1164e2c0a3bf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBVEVTVFJHTlVXQkhFLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview"},{"User-Agent":"Azure-SDK-For-Java","Method":"DELETE","Uri":"/subscriptions/bca17b84-9f14-4ccc-abf4-1164e2c0a3bf/resourcegroups/javatestrgnvvfqn?api-version=2014-04-01-preview","Content-Type":"application/json; charset=utf-8"},{"x-ms-ratelimit-remaining-subscription-writes":"1169","Pragma":"no-cache","StatusCode":"202","x-ms-correlation-request-id":"f04f57c5-a369-42c4-8d7d-377bfe25ed7f","Date":"Mon, 31 Aug 2015 23:06:54 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"15","x-ms-routing-request-id":"WESTUS:20150831T230654Z:f04f57c5-a369-42c4-8d7d-377bfe25ed7f","Expires":"-1","Content-Length":"0","x-ms-request-id":"f04f57c5-a369-42c4-8d7d-377bfe25ed7f","Body":"","Location":"https://management.azure.com/subscriptions/bca17b84-9f14-4ccc-abf4-1164e2c0a3bf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBVEVTVFJHTlZWRlFOLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview"},{"User-Agent":"Azure-SDK-For-Java","Method":"DELETE","Uri":"/subscriptions/bca17b84-9f14-4ccc-abf4-1164e2c0a3bf/resourcegroups/javatestrgnwrqhn?api-version=2014-04-01-preview","Content-Type":"application/json; charset=utf-8"},{"x-ms-ratelimit-remaining-subscription-writes":"1168","Pragma":"no-cache","StatusCode":"202","x-ms-correlation-request-id":"30de577d-fb14-45f9-ae90-0fd5e0635f18","Date":"Mon, 31 Aug 2015 23:06:54 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"15","x-ms-routing-request-id":"WESTUS:20150831T230654Z:30de577d-fb14-45f9-ae90-0fd5e0635f18","Expires":"-1","Content-Length":"0","x-ms-request-id":"30de577d-fb14-45f9-ae90-0fd5e0635f18","Body":"","Location":"https://management.azure.com/subscriptions/bca17b84-9f14-4ccc-abf4-1164e2c0a3bf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBVEVTVFJHTldSUUhOLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview"},{"User-Agent":"Azure-SDK-For-Java","Method":"DELETE","Uri":"/subscriptions/bca17b84-9f14-4ccc-abf4-1164e2c0a3bf/resourcegroups/javatestrgnwszot?api-version=2014-04-01-preview","Content-Type":"application/json; charset=utf-8"},{"x-ms-ratelimit-remaining-subscription-writes":"1167","Pragma":"no-cache","StatusCode":"202","x-ms-correlation-request-id":"049da767-1296-4498-a1a5-3f22e778013e","Date":"Mon, 31 Aug 2015 23:06:54 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"15","x-ms-routing-request-id":"WESTUS:20150831T230654Z:049da767-1296-4498-a1a5-3f22e778013e","Expires":"-1","Content-Length":"0","x-ms-request-id":"049da767-1296-4498-a1a5-3f22e778013e","Body":"","Location":"https://management.azure.com/subscriptions/bca17b84-9f14-4ccc-abf4-1164e2c0a3bf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBVEVTVFJHTldTWk9ULVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview"},{"User-Agent":"Azure-SDK-For-Java","Method":"DELETE","Uri":"/subscriptions/bca17b84-9f14-4ccc-abf4-1164e2c0a3bf/resourcegroups/javatestrgnwxjnp?api-version=2014-04-01-preview","Content-Type":"application/json; charset=utf-8"},{"x-ms-ratelimit-remaining-subscription-writes":"1166","Pragma":"no-cache","StatusCode":"202","x-ms-correlation-request-id":"92cea2d6-1cb1-4e4d-91b8-8408c4aeaad8","Date":"Mon, 31 Aug 2015 23:06:55 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"15","x-ms-routing-request-id":"WESTUS:20150831T230655Z:92cea2d6-1cb1-4e4d-91b8-8408c4aeaad8","Expires":"-1","Content-Length":"0","x-ms-request-id":"92cea2d6-1cb1-4e4d-91b8-8408c4aeaad8","Body":"","Location":"https://management.azure.com/subscriptions/bca17b84-9f14-4ccc-abf4-1164e2c0a3bf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBVEVTVFJHTldYSk5QLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview"},{"User-Agent":"Azure-SDK-For-Java","Method":"DELETE","Uri":"/subscriptions/bca17b84-9f14-4ccc-abf4-1164e2c0a3bf/resourcegroups/javatestrgnygkkh?api-version=2014-04-01-preview","Content-Type":"application/json; charset=utf-8"},{"x-ms-ratelimit-remaining-subscription-writes":"1165","Pragma":"no-cache","StatusCode":"202","x-ms-correlation-request-id":"564505a4-c21c-4cde-9f03-9aff71b6354e","Date":"Mon, 31 Aug 2015 23:06:55 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"15","x-ms-routing-request-id":"WESTUS:20150831T230655Z:564505a4-c21c-4cde-9f03-9aff71b6354e","Expires":"-1","Content-Length":"0","x-ms-request-id":"564505a4-c21c-4cde-9f03-9aff71b6354e","Body":"","Location":"https://management.azure.com/subscriptions/bca17b84-9f14-4ccc-abf4-1164e2c0a3bf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBVEVTVFJHTllHS0tILVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview"},{"User-Agent":"Azure-SDK-For-Java","Method":"DELETE","Uri":"/subscriptions/bca17b84-9f14-4ccc-abf4-1164e2c0a3bf/resourcegroups/javatestrgnynkcy?api-version=2014-04-01-preview","Content-Type":"application/json; charset=utf-8"},{"x-ms-ratelimit-remaining-subscription-writes":"1164","Pragma":"no-cache","StatusCode":"202","x-ms-correlation-request-id":"17bbab6e-89cc-426b-b34d-e201f2e06454","Date":"Mon, 31 Aug 2015 23:06:55 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"15","x-ms-routing-request-id":"WESTUS:20150831T230655Z:17bbab6e-89cc-426b-b34d-e201f2e06454","Expires":"-1","Content-Length":"0","x-ms-request-id":"17bbab6e-89cc-426b-b34d-e201f2e06454","Body":"","Location":"https://management.azure.com/subscriptions/bca17b84-9f14-4ccc-abf4-1164e2c0a3bf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBVEVTVFJHTllOS0NZLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview"},{"User-Agent":"Azure-SDK-For-Java","Method":"DELETE","Uri":"/subscriptions/bca17b84-9f14-4ccc-abf4-1164e2c0a3bf/resourcegroups/javatestrgnyqscd?api-version=2014-04-01-preview","Content-Type":"application/json; charset=utf-8"},{"x-ms-ratelimit-remaining-subscription-writes":"1163","Pragma":"no-cache","StatusCode":"202","x-ms-correlation-request-id":"c630cc99-e42f-49a9-92e2-52b7d05d6460","Date":"Mon, 31 Aug 2015 23:06:55 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"15","x-ms-routing-request-id":"WESTUS:20150831T230655Z:c630cc99-e42f-49a9-92e2-52b7d05d6460","Expires":"-1","Content-Length":"0","x-ms-request-id":"c630cc99-e42f-49a9-92e2-52b7d05d6460","Body":"","Location":"https://management.azure.com/subscriptions/bca17b84-9f14-4ccc-abf4-1164e2c0a3bf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBVEVTVFJHTllRU0NELVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview"},{"User-Agent":"Azure-SDK-For-Java","Method":"DELETE","Uri":"/subscriptions/bca17b84-9f14-4ccc-abf4-1164e2c0a3bf/resourcegroups/javatestrgnyzojj?api-version=2014-04-01-preview","Content-Type":"application/json; charset=utf-8"},{"x-ms-ratelimit-remaining-subscription-writes":"1162","Pragma":"no-cache","StatusCode":"202","x-ms-correlation-request-id":"d1614bb8-6a5a-468a-8977-7f869e422fd5","Date":"Mon, 31 Aug 2015 23:06:55 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"15","x-ms-routing-request-id":"WESTUS:20150831T230656Z:d1614bb8-6a5a-468a-8977-7f869e422fd5","Expires":"-1","Content-Length":"0","x-ms-request-id":"d1614bb8-6a5a-468a-8977-7f869e422fd5","Body":"","Location":"https://management.azure.com/subscriptions/bca17b84-9f14-4ccc-abf4-1164e2c0a3bf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBVEVTVFJHTllaT0pKLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview"},{"User-Agent":"Azure-SDK-For-Java","Method":"DELETE","Uri":"/subscriptions/bca17b84-9f14-4ccc-abf4-1164e2c0a3bf/resourcegroups/javatestrgnzchay?api-version=2014-04-01-preview","Content-Type":"application/json; charset=utf-8"},{"x-ms-ratelimit-remaining-subscription-writes":"1161","Pragma":"no-cache","StatusCode":"202","x-ms-correlation-request-id":"99029243-f9fb-4030-84b7-c5247a6fa72f","Date":"Mon, 31 Aug 2015 23:06:56 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"15","x-ms-routing-request-id":"WESTUS:20150831T230656Z:99029243-f9fb-4030-84b7-c5247a6fa72f","Expires":"-1","Content-Length":"0","x-ms-request-id":"99029243-f9fb-4030-84b7-c5247a6fa72f","Body":"","Location":"https://management.azure.com/subscriptions/bca17b84-9f14-4ccc-abf4-1164e2c0a3bf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBVEVTVFJHTlpDSEFZLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview"},{"User-Agent":"Azure-SDK-For-Java","Method":"DELETE","Uri":"/subscriptions/bca17b84-9f14-4ccc-abf4-1164e2c0a3bf/resourcegroups/javatestrgnzjvoq?api-version=2014-04-01-preview","Content-Type":"application/json; charset=utf-8"},{"x-ms-ratelimit-remaining-subscription-writes":"1160","Pragma":"no-cache","StatusCode":"202","x-ms-correlation-request-id":"65e9f6ee-75ed-43a1-89dd-e9aa7fb5b1ce","Date":"Mon, 31 Aug 2015 23:06:56 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"15","x-ms-routing-request-id":"WESTUS:20150831T230656Z:65e9f6ee-75ed-43a1-89dd-e9aa7fb5b1ce","Expires":"-1","Content-Length":"0","x-ms-request-id":"65e9f6ee-75ed-43a1-89dd-e9aa7fb5b1ce","Body":"","Location":"https://management.azure.com/subscriptions/bca17b84-9f14-4ccc-abf4-1164e2c0a3bf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBVEVTVFJHTlpKVk9RLVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview"}] \ No newline at end of file +[{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups?api-version=2014-04-01-preview","Content-Type":"application/json; charset=utf-8"},{"Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14944","StatusCode":"200","x-ms-correlation-request-id":"42cac192-7e2f-4179-b833-22e31b09b4bf","Date":"Mon, 19 Oct 2015 19:55:22 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T195522Z:42cac192-7e2f-4179-b833-22e31b09b4bf","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"15290","x-ms-request-id":"42cac192-7e2f-4179-b833-22e31b09b4bf","Body":"{\"value\":[{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/adxchefnode\",\"name\":\"adxchefnode\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/alborno\",\"name\":\"alborno\",\"location\":\"eastasia\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/autorestresource.central\",\"name\":\"autorestresource.central\",\"location\":\"southcentralus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/autorestresourceeast\",\"name\":\"autorestresourceeast\",\"location\":\"eastus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AutoRestResources2\",\"name\":\"AutoRestResources2\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AutoRestResourcesEast\",\"name\":\"AutoRestResourcesEast\",\"location\":\"eastus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/azpowershelltest\",\"name\":\"azpowershelltest\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/azpstest\",\"name\":\"azpstest\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/azpstestnonr2\",\"name\":\"azpstestnonr2\",\"location\":\"centralus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/cli-cs6577\",\"name\":\"cli-cs6577\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/cli-cs660\",\"name\":\"cli-cs660\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/cli-cs9223\",\"name\":\"cli-cs9223\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg169\",\"name\":\"csmrg169\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg2400\",\"name\":\"csmrg2400\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg2974\",\"name\":\"csmrg2974\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg3006\",\"name\":\"csmrg3006\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg3251\",\"name\":\"csmrg3251\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg3588\",\"name\":\"csmrg3588\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg3680\",\"name\":\"csmrg3680\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg3723\",\"name\":\"csmrg3723\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg4190\",\"name\":\"csmrg4190\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg4261\",\"name\":\"csmrg4261\",\"location\":\"japanwest\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg4515\",\"name\":\"csmrg4515\",\"location\":\"japanwest\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg4858\",\"name\":\"csmrg4858\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5149\",\"name\":\"csmrg5149\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg566\",\"name\":\"csmrg566\",\"location\":\"japanwest\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg5850\",\"name\":\"csmrg5850\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg689\",\"name\":\"csmrg689\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg7223\",\"name\":\"csmrg7223\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg7721\",\"name\":\"csmrg7721\",\"location\":\"japanwest\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg895\",\"name\":\"csmrg895\",\"location\":\"japanwest\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/csmrg9328\",\"name\":\"csmrg9328\",\"location\":\"japanwest\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-ApplicationInsights-CentralUS\",\"name\":\"Default-ApplicationInsights-CentralUS\",\"location\":\"centralus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-BizTalk-West-Europe\",\"name\":\"Default-BizTalk-West-Europe\",\"location\":\"westeurope\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Media-WestUS\",\"name\":\"Default-Media-WestUS\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Networking\",\"name\":\"Default-Networking\",\"location\":\"eastus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-SQL-WestUS\",\"name\":\"Default-SQL-WestUS\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-CentralUS\",\"name\":\"Default-Storage-CentralUS\",\"location\":\"centralus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-EastAsia\",\"name\":\"Default-Storage-EastAsia\",\"location\":\"eastasia\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-EastUS\",\"name\":\"Default-Storage-EastUS\",\"location\":\"eastus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-WestUS\",\"name\":\"Default-Storage-WestUS\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Web-CentralUS\",\"name\":\"Default-Web-CentralUS\",\"location\":\"centralus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Web-EastAsia\",\"name\":\"Default-Web-EastAsia\",\"location\":\"eastasia\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Web-EastUS\",\"name\":\"Default-Web-EastUS\",\"location\":\"eastus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Web-EastUS2\",\"name\":\"Default-Web-EastUS2\",\"location\":\"eastus2\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Web-NorthCentralUS\",\"name\":\"Default-Web-NorthCentralUS\",\"location\":\"northcentralus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Web-WestUS\",\"name\":\"Default-Web-WestUS\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/ematestrg12\",\"name\":\"ematestrg12\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnhkarn\",\"name\":\"javatestrgnhkarn\",\"location\":\"southeastasia\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/MobileEngagement\",\"name\":\"MobileEngagement\",\"location\":\"centralus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/mynoden083001\",\"name\":\"mynoden083001\",\"location\":\"southcentralus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/myResourceGroup\",\"name\":\"myResourceGroup\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/nodesdk401\",\"name\":\"nodesdk401\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/nodesdk6749\",\"name\":\"nodesdk6749\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Office365Connector\",\"name\":\"Office365Connector\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/office365rg\",\"name\":\"office365rg\",\"location\":\"eastasia\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/onesdk2842\",\"name\":\"onesdk2842\",\"location\":\"eastasia\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/poshmosh1\",\"name\":\"poshmosh1\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/poshmosh2\",\"name\":\"poshmosh2\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/pshtestrg8266\",\"name\":\"pshtestrg8266\",\"location\":\"northcentralus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/RecoveryServices-P2VBRNX3ZH3GXC5MWKW5VS3K5J4T7XSMRHBCI2OMUCUGDVAVQXXA-east-asia\",\"name\":\"RecoveryServices-P2VBRNX3ZH3GXC5MWKW5VS3K5J4T7XSMRHBCI2OMUCUGDVAVQXXA-east-asia\",\"location\":\"eastasia\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/sdkematest02\",\"name\":\"sdkematest02\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/sdkematesting\",\"name\":\"sdkematesting\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/test0108ps\",\"name\":\"test0108ps\",\"location\":\"southcentralus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testjavaqdrdmqscfy\",\"name\":\"testjavaqdrdmqscfy\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testjavaqodapsjuun\",\"name\":\"testjavaqodapsjuun\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testjavatnxzktskmr\",\"name\":\"testjavatnxzktskmr\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testjavavhrpngqbry\",\"name\":\"testjavavhrpngqbry\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testjavayksxvtakfc\",\"name\":\"testjavayksxvtakfc\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/VS-vsotest01-Group\",\"name\":\"VS-vsotest01-Group\",\"location\":\"southcentralus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/winnietest\",\"name\":\"winnietest\",\"location\":\"eastasia\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/xDeploymentTestGroup2737\",\"name\":\"xDeploymentTestGroup2737\",\"location\":\"southcentralus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/xDeploymentTestGroup4379\",\"name\":\"xDeploymentTestGroup4379\",\"location\":\"southcentralus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/xplatTestGCreate2191\",\"name\":\"xplatTestGCreate2191\",\"location\":\"southcentralus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/xplatTestGCreate4473\",\"name\":\"xplatTestGCreate4473\",\"location\":\"southcentralus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/xplatTestGCreate6299\",\"name\":\"xplatTestGCreate6299\",\"location\":\"southcentralus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/xplatTestGCreate7280\",\"name\":\"xplatTestGCreate7280\",\"location\":\"southcentralus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/xplatTestGCreate7322\",\"name\":\"xplatTestGCreate7322\",\"location\":\"southcentralus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/xplatTestGCreate9472\",\"name\":\"xplatTestGCreate9472\",\"location\":\"southcentralus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/ygtest123\",\"name\":\"ygtest123\",\"location\":\"southcentralus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/ygtest123xplat\",\"name\":\"ygtest123xplat\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}}]}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"DELETE","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/javatestrgnhkarn?api-version=2014-04-01-preview","Content-Type":"application/json; charset=utf-8"},{"x-ms-ratelimit-remaining-subscription-writes":"1199","Pragma":"no-cache","StatusCode":"202","x-ms-correlation-request-id":"c9ec9d0a-9aac-413e-afe6-f6c1b4712b37","Date":"Mon, 19 Oct 2015 19:55:25 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"15","x-ms-routing-request-id":"WESTUS:20151019T195525Z:c9ec9d0a-9aac-413e-afe6-f6c1b4712b37","Expires":"-1","Content-Length":"0","x-ms-request-id":"c9ec9d0a-9aac-413e-afe6-f6c1b4712b37","Body":"","Location":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBVEVTVFJHTkhLQVJOLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2014-04-01-preview"}] \ No newline at end of file diff --git a/resource-management/azure-mgmt-utility/src/test/resources/session-records/testExtensionIMageListTypes.json b/resource-management/azure-mgmt-utility/src/test/resources/session-records/testExtensionIMageListTypes.json index 911e719be7aa..d701595a8f9c 100644 --- a/resource-management/azure-mgmt-utility/src/test/resources/session-records/testExtensionIMageListTypes.json +++ b/resource-management/azure-mgmt-utility/src/test/resources/session-records/testExtensionIMageListTypes.json @@ -1 +1 @@ -[{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/providers/Microsoft.Compute/locations/SouthEastAsia/publishers/Microsoft.Compute/artifacttypes/vmextension/types?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14998","StatusCode":"200","x-ms-correlation-request-id":"e7342bc3-b40a-44b2-8e5e-1cf11f9fba1c","Date":"Fri, 21 Aug 2015 00:01:31 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150821T000131Z:e7342bc3-b40a-44b2-8e5e-1cf11f9fba1c","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"553","x-ms-request-id":"2d6ec7d5-e01c-4e98-b147-158cc747a52c","Body":"[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CustomScriptExtension\",\r\n \"id\": \"/Subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"VMAccessAgent\",\r\n \"id\": \"/Subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent\"\r\n }\r\n]","Content-Type":"application/json; charset=utf-8"}] \ No newline at end of file +[{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/SouthEastAsia/publishers/Microsoft.Compute/artifacttypes/vmextension/types?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14987","StatusCode":"200","x-ms-correlation-request-id":"d634e202-95ea-40a8-b4f9-634692402fdd","Date":"Mon, 19 Oct 2015 19:57:58 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T195758Z:d634e202-95ea-40a8-b4f9-634692402fdd","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"806","x-ms-request-id":"2d8b3ca7-84b8-431f-bea1-b089092f5033","Body":"[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"BGInfo\",\r\n \"id\": \"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/BGInfo\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"CustomScriptExtension\",\r\n \"id\": \"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/CustomScriptExtension\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"VMAccessAgent\",\r\n \"id\": \"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent\"\r\n }\r\n]","Content-Type":"application/json; charset=utf-8"}] \ No newline at end of file diff --git a/resource-management/azure-mgmt-utility/src/test/resources/session-records/testExtensionImageGet.json b/resource-management/azure-mgmt-utility/src/test/resources/session-records/testExtensionImageGet.json index 70c32800a38e..cf292b30ce6b 100644 --- a/resource-management/azure-mgmt-utility/src/test/resources/session-records/testExtensionImageGet.json +++ b/resource-management/azure-mgmt-utility/src/test/resources/session-records/testExtensionImageGet.json @@ -1 +1 @@ -[{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/providers/Microsoft.Compute/locations/SouthEastAsia/publishers/Microsoft.Compute/artifacttypes/vmextension/types/VMAccessAgent/versions/2.0?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14873","StatusCode":"200","x-ms-correlation-request-id":"6a36786a-1c93-4d8c-b102-f32408e7dc56","Date":"Fri, 21 Aug 2015 00:01:35 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150821T000136Z:6a36786a-1c93-4d8c-b102-f32408e7dc56","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"419","x-ms-request-id":"8ff32242-0e7a-4c2b-b0df-8de4ee3c19d1","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\": \"southeastasia\",\r\n \"name\": \"2.0\",\r\n \"id\": \"/Subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/2.0\"\r\n}","Content-Type":"application/json; charset=utf-8"}] \ No newline at end of file +[{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/SouthEastAsia/publishers/Microsoft.Compute/artifacttypes/vmextension/types/VMAccessAgent/versions/2.0?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14998","StatusCode":"200","x-ms-correlation-request-id":"183714c6-aba8-4060-82fb-c55feed04eae","Date":"Mon, 19 Oct 2015 19:58:02 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T195803Z:183714c6-aba8-4060-82fb-c55feed04eae","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"419","x-ms-request-id":"4b811f97-bf10-40ca-b4ef-1bf7d1e44075","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\": \"southeastasia\",\r\n \"name\": \"2.0\",\r\n \"id\": \"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/2.0\"\r\n}","Content-Type":"application/json; charset=utf-8"}] \ No newline at end of file diff --git a/resource-management/azure-mgmt-utility/src/test/resources/session-records/testExtensionImageListVersionsNoFilter.json b/resource-management/azure-mgmt-utility/src/test/resources/session-records/testExtensionImageListVersionsNoFilter.json index 7e9c990b95c1..f70acae41858 100644 --- a/resource-management/azure-mgmt-utility/src/test/resources/session-records/testExtensionImageListVersionsNoFilter.json +++ b/resource-management/azure-mgmt-utility/src/test/resources/session-records/testExtensionImageListVersionsNoFilter.json @@ -1 +1 @@ -[{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/providers/Microsoft.Compute/locations/SouthEastAsia/publishers/Microsoft.Compute/artifacttypes/vmextension/types/VMAccessAgent/versions?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14836","StatusCode":"200","x-ms-correlation-request-id":"03962061-917a-418e-9f03-1a7b8ab94df3","Date":"Fri, 21 Aug 2015 00:01:30 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150821T000130Z:03962061-917a-418e-9f03-1a7b8ab94df3","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"273","x-ms-request-id":"612f5047-acec-4ee0-b43b-30c22b5b7639","Body":"[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2.0\",\r\n \"id\": \"/Subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/2.0\"\r\n }\r\n]","Content-Type":"application/json; charset=utf-8"}] \ No newline at end of file +[{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/SouthEastAsia/publishers/Microsoft.Compute/artifacttypes/vmextension/types/VMAccessAgent/versions?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14988","StatusCode":"200","x-ms-correlation-request-id":"02976636-f5ca-409e-8e00-92602c59a5be","Date":"Mon, 19 Oct 2015 19:57:57 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T195757Z:02976636-f5ca-409e-8e00-92602c59a5be","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"273","x-ms-request-id":"a16b23fd-c26d-4152-a561-ef75c8e5ec98","Body":"[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2.0\",\r\n \"id\": \"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute/ArtifactTypes/VMExtension/Types/VMAccessAgent/Versions/2.0\"\r\n }\r\n]","Content-Type":"application/json; charset=utf-8"}] \ No newline at end of file diff --git a/resource-management/azure-mgmt-utility/src/test/resources/session-records/testGetAvailabilitySetId.json b/resource-management/azure-mgmt-utility/src/test/resources/session-records/testGetAvailabilitySetId.json index 199a6efd704a..7a7f24ea9c42 100644 --- a/resource-management/azure-mgmt-utility/src/test/resources/session-records/testGetAvailabilitySetId.json +++ b/resource-management/azure-mgmt-utility/src/test/resources/session-records/testGetAvailabilitySetId.json @@ -1 +1 @@ -[{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/javatestrgnpoysk?api-version=2014-04-01-preview","Content-Type":"application/json; charset=utf-8"},{"x-ms-ratelimit-remaining-subscription-writes":"1199","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"8185095b-b75a-482b-9e32-a2eb30eda049","Date":"Fri, 14 Aug 2015 22:31:24 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T223125Z:8185095b-b75a-482b-9e32-a2eb30eda049","Expires":"-1","Content-Length":"192","x-ms-request-id":"8185095b-b75a-482b-9e32-a2eb30eda049","Body":"{\"id\":\"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnpoysk\",\"name\":\"javatestrgnpoysk\",\"location\":\"southeastasia\",\"properties\":{\"provisioningState\":\"Succeeded\"}}","Content-Type":"application/json; charset=utf-8"}] \ No newline at end of file +[{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/javatestrgnpjvbe?api-version=2014-04-01-preview","Content-Type":"application/json; charset=utf-8"},{"x-ms-ratelimit-remaining-subscription-writes":"1199","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"d43dc3d3-8c5c-4b7e-b670-cdd467d7c84a","Date":"Mon, 19 Oct 2015 19:55:29 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T195529Z:d43dc3d3-8c5c-4b7e-b670-cdd467d7c84a","Expires":"-1","Content-Length":"192","x-ms-request-id":"d43dc3d3-8c5c-4b7e-b670-cdd467d7c84a","Body":"{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpjvbe\",\"name\":\"javatestrgnpjvbe\",\"location\":\"southeastasia\",\"properties\":{\"provisioningState\":\"Succeeded\"}}","Content-Type":"application/json; charset=utf-8"}] \ No newline at end of file diff --git a/resource-management/azure-mgmt-utility/src/test/resources/session-records/testListVMInSubscription.json b/resource-management/azure-mgmt-utility/src/test/resources/session-records/testListVMInSubscription.json index 797a6ab47938..aaa31a7fce28 100644 --- a/resource-management/azure-mgmt-utility/src/test/resources/session-records/testListVMInSubscription.json +++ b/resource-management/azure-mgmt-utility/src/test/resources/session-records/testListVMInSubscription.json @@ -1 +1 @@ -[{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/providers/Microsoft.Compute/locations/SouthEastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?api-version=2015-06-15&$top=1","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14999","StatusCode":"200","x-ms-correlation-request-id":"e8cba5dc-b870-4f47-915e-9c4bd535f6f1","Date":"Tue, 25 Aug 2015 23:41:21 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T234121Z:e8cba5dc-b870-4f47-915e-9c4bd535f6f1","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"313","x-ms-request-id":"a1147fd7-c9d3-4c1b-b0a0-5d3867590a01","Body":"[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201505\",\r\n \"id\": \"/Subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201505\"\r\n }\r\n]","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourcegroups/javatestrgnehrmp?api-version=2014-04-01-preview","Content-Type":"application/json; charset=utf-8"},{"x-ms-ratelimit-remaining-subscription-writes":"1199","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"ea3154f7-c036-427c-bb2d-fd02fcc3b664","Date":"Tue, 25 Aug 2015 23:41:23 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T234124Z:ea3154f7-c036-427c-bb2d-fd02fcc3b664","Expires":"-1","Content-Length":"192","x-ms-request-id":"ea3154f7-c036-427c-bb2d-fd02fcc3b664","Body":"{\"id\":\"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnehrmp\",\"name\":\"javatestrgnehrmp\",\"location\":\"southeastasia\",\"properties\":{\"provisioningState\":\"Succeeded\"}}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnehrmp/providers/Microsoft.Storage/storageAccounts/javatest1saneqsel?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-ratelimit-remaining-subscription-writes":"1199","Pragma":"no-cache","StatusCode":"202","x-ms-correlation-request-id":"5e46b3dc-7a50-4178-b919-1820a27ef4ab","Date":"Tue, 25 Aug 2015 23:41:30 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"25","x-ms-routing-request-id":"WESTUS:20150825T234131Z:5e46b3dc-7a50-4178-b919-1820a27ef4ab","Expires":"-1","Content-Length":"4","x-ms-request-id":"a77207c9-f644-4d40-a460-4eee47ccc012","Body":"null","Content-Type":"application/json; charset=utf-8","Location":"https://management.azure.com/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/providers/Microsoft.Storage/operations/a77207c9-f644-4d40-a460-4eee47ccc012?monitor=true&api-version=2015-05-01-preview"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/providers/Microsoft.Storage/operations/a77207c9-f644-4d40-a460-4eee47ccc012?monitor=true&api-version=2015-05-01-preview"},{"Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14999","StatusCode":"202","x-ms-correlation-request-id":"f0d5ab2a-58c7-4d9b-a33b-1fe3885d6861","Date":"Tue, 25 Aug 2015 23:41:31 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"25","x-ms-routing-request-id":"WESTUS:20150825T234132Z:f0d5ab2a-58c7-4d9b-a33b-1fe3885d6861","Expires":"-1","Content-Length":"4","x-ms-request-id":"9e583300-a281-43cf-bd5a-4690cf7f6169","Body":"null","Content-Type":"application/json; charset=utf-8","Location":"https://management.azure.com/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/providers/Microsoft.Storage/operations/a77207c9-f644-4d40-a460-4eee47ccc012?monitor=true&api-version=2015-05-01-preview"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/providers/Microsoft.Storage/operations/a77207c9-f644-4d40-a460-4eee47ccc012?monitor=true&api-version=2015-05-01-preview"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14998","StatusCode":"200","x-ms-correlation-request-id":"06da0106-c27e-48c1-9f57-c8eaaf737350","Date":"Tue, 25 Aug 2015 23:41:56 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T234157Z:06da0106-c27e-48c1-9f57-c8eaaf737350","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"73","x-ms-request-id":"90d0081e-1672-4aab-b16e-6319430fda25","Body":"{\"properties\":{\"accountType\":\"Standard_GRS\"},\"location\":\"Southeast Asia\"}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnehrmp/providers/Microsoft.Storage/storageAccounts?api-version=2015-05-01-preview"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14999","StatusCode":"200","x-ms-correlation-request-id":"f4cfe95f-74c3-4176-b22e-9ceec04e8133","Date":"Tue, 25 Aug 2015 23:41:57 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T234158Z:f4cfe95f-74c3-4176-b22e-9ceec04e8133","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"728","x-ms-request-id":"2124a649-fd9a-462c-89ce-5219a6adbe26","Body":"{\"value\":[{\"id\":\"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnehrmp/providers/Microsoft.Storage/storageAccounts/javatest1saneqsel\",\"name\":\"javatest1saneqsel\",\"location\":\"Southeast Asia\",\"type\":\"Microsoft.Storage/storageAccounts\",\"properties\":{\"provisioningState\":\"Succeeded\",\"accountType\":\"Standard_GRS\",\"primaryEndpoints\":{\"blob\":\"https://javatest1saneqsel.blob.core.windows.net/\",\"queue\":\"https://javatest1saneqsel.queue.core.windows.net/\",\"table\":\"https://javatest1saneqsel.table.core.windows.net/\"},\"primaryLocation\":\"Southeast Asia\",\"statusOfPrimary\":\"Available\",\"secondaryLocation\":\"East Asia\",\"statusOfSecondary\":\"Available\",\"creationTime\":\"2015-08-25T23:41:28.6330021Z\"}}],\"nextLink\":\"\"}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnehrmp/providers/Microsoft.Network/virtualnetworks/javatest1vnetnqjxhw?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-ratelimit-remaining-subscription-writes":"1199","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"9c4a555a-1ae5-45fd-bd64-d4bf35c1d5af","Date":"Tue, 25 Aug 2015 23:42:02 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"10","x-ms-routing-request-id":"WESTUS:20150825T234203Z:9c4a555a-1ae5-45fd-bd64-d4bf35c1d5af","Expires":"-1","Content-Length":"1060","Azure-AsyncOperation":"https://management.azure.com/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/providers/Microsoft.Network/locations/southeastasia/operations/cad768af-da54-4642-ad00-ae04d905cb3d?api-version=2015-05-01-preview","x-ms-request-id":"cad768af-da54-4642-ad00-ae04d905cb3d","Body":"{\r\n \"name\": \"javatest1vnetnqjxhw\",\r\n \"id\": \"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnehrmp/providers/Microsoft.Network/virtualNetworks/javatest1vnetnqjxhw\",\r\n \"etag\": \"W/\\\"2620a191-4ef6-493a-a9b4-885d30433012\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"8a151200-cf8e-4b47-b71d-767bfe9e2874\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"javatest1subnnnkxff\",\r\n \"id\": \"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnehrmp/providers/Microsoft.Network/virtualNetworks/javatest1vnetnqjxhw/subnets/javatest1subnnnkxff\",\r\n \"etag\": \"W/\\\"2620a191-4ef6-493a-a9b4-885d30433012\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"x-ms-version":"2015-05-01-preview","User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/providers/Microsoft.Network/locations/southeastasia/operations/cad768af-da54-4642-ad00-ae04d905cb3d?api-version=2015-05-01-preview"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14998","StatusCode":"200","x-ms-correlation-request-id":"ef1c6484-3669-48e5-a4c6-9cd2bbfdc5a3","Date":"Tue, 25 Aug 2015 23:42:03 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T234203Z:ef1c6484-3669-48e5-a4c6-9cd2bbfdc5a3","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"29","x-ms-request-id":"f4d32421-7ed9-4770-8bd0-41e2b8a006cb","Body":"{\r\n \"status\": \"Succeeded\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnehrmp/providers/Microsoft.Network/virtualnetworks/javatest1vnetnqjxhw?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14909","StatusCode":"200","x-ms-correlation-request-id":"4a048ed3-7eed-4ebc-bf75-e2f18dc81f12","Date":"Tue, 25 Aug 2015 23:42:04 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","ETag":"W/\"68074c9d-0174-4410-87a1-f5f94dc97294\"","x-ms-routing-request-id":"WESTUS:20150825T234204Z:4a048ed3-7eed-4ebc-bf75-e2f18dc81f12","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1062","x-ms-request-id":"fe1d4b8d-3920-4e25-8076-9badb99a9784","Body":"{\r\n \"name\": \"javatest1vnetnqjxhw\",\r\n \"id\": \"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnehrmp/providers/Microsoft.Network/virtualNetworks/javatest1vnetnqjxhw\",\r\n \"etag\": \"W/\\\"68074c9d-0174-4410-87a1-f5f94dc97294\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8a151200-cf8e-4b47-b71d-767bfe9e2874\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"javatest1subnnnkxff\",\r\n \"id\": \"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnehrmp/providers/Microsoft.Network/virtualNetworks/javatest1vnetnqjxhw/subnets/javatest1subnnnkxff\",\r\n \"etag\": \"W/\\\"68074c9d-0174-4410-87a1-f5f94dc97294\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnehrmp/providers/Microsoft.Network/networkInterfaces/javatest1nicndyenf?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-ratelimit-remaining-subscription-writes":"1199","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"f151c332-7570-4858-ab89-3d41ee2511a5","Date":"Tue, 25 Aug 2015 23:42:09 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T234210Z:f151c332-7570-4858-ab89-3d41ee2511a5","Expires":"-1","Content-Length":"1311","Azure-AsyncOperation":"https://management.azure.com/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/providers/Microsoft.Network/locations/southeastasia/operations/b27bcdb7-0320-4f17-a368-838232aec3a3?api-version=2015-05-01-preview","x-ms-request-id":"b27bcdb7-0320-4f17-a368-838232aec3a3","Body":"{\r\n \"name\": \"javatest1nicndyenf\",\r\n \"id\": \"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnehrmp/providers/Microsoft.Network/networkInterfaces/javatest1nicndyenf\",\r\n \"etag\": \"W/\\\"d48dc147-2048-4b34-a6e0-facd667fc260\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4c91908a-07d2-4af5-97d6-cf5d1ef9233c\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"javatest1ipcnteyfu\",\r\n \"id\": \"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnehrmp/providers/Microsoft.Network/networkInterfaces/javatest1nicndyenf/ipConfigurations/javatest1ipcnteyfu\",\r\n \"etag\": \"W/\\\"d48dc147-2048-4b34-a6e0-facd667fc260\\\"\",\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/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnehrmp/providers/Microsoft.Network/virtualNetworks/javatest1vnetnqjxhw/subnets/javatest1subnnnkxff\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"x-ms-version":"2015-05-01-preview","User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/providers/Microsoft.Network/locations/southeastasia/operations/b27bcdb7-0320-4f17-a368-838232aec3a3?api-version=2015-05-01-preview"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14999","StatusCode":"200","x-ms-correlation-request-id":"97630dde-ed5b-45ed-a2f4-da009dbc7f73","Date":"Tue, 25 Aug 2015 23:42:10 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T234211Z:97630dde-ed5b-45ed-a2f4-da009dbc7f73","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"29","x-ms-request-id":"21c22ce6-baa4-468a-88bb-f8c112c637f8","Body":"{\r\n \"status\": \"Succeeded\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnehrmp/providers/Microsoft.Network/networkInterfaces/javatest1nicndyenf?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14908","StatusCode":"200","x-ms-correlation-request-id":"fda26063-f727-4e6d-9c36-787017e2fde1","Date":"Tue, 25 Aug 2015 23:42:10 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","ETag":"W/\"d48dc147-2048-4b34-a6e0-facd667fc260\"","x-ms-routing-request-id":"WESTUS:20150825T234211Z:fda26063-f727-4e6d-9c36-787017e2fde1","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1311","x-ms-request-id":"14df1a77-5e82-4829-9db4-4017a7418eae","Body":"{\r\n \"name\": \"javatest1nicndyenf\",\r\n \"id\": \"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnehrmp/providers/Microsoft.Network/networkInterfaces/javatest1nicndyenf\",\r\n \"etag\": \"W/\\\"d48dc147-2048-4b34-a6e0-facd667fc260\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4c91908a-07d2-4af5-97d6-cf5d1ef9233c\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"javatest1ipcnteyfu\",\r\n \"id\": \"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnehrmp/providers/Microsoft.Network/networkInterfaces/javatest1nicndyenf/ipConfigurations/javatest1ipcnteyfu\",\r\n \"etag\": \"W/\\\"d48dc147-2048-4b34-a6e0-facd667fc260\\\"\",\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/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnehrmp/providers/Microsoft.Network/virtualNetworks/javatest1vnetnqjxhw/subnets/javatest1subnnnkxff\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnehrmp/providers/Microsoft.Compute/availabilitySets/javatest1asngyqoh?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"782ae8e4-f04b-4968-be1b-7a692c6c70c1_130844981924640799","x-ms-ratelimit-remaining-subscription-writes":"1198","Pragma":"no-cache","StatusCode":"200","x-ms-correlation-request-id":"fec13176-dec2-4b39-9c0f-6d48c8c27e32","Date":"Tue, 25 Aug 2015 23:42:14 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T234214Z:fec13176-dec2-4b39-9c0f-6d48c8c27e32","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"387","x-ms-request-id":"05060a4f-7e03-4887-9f7e-92e0e4d159ff","Body":"{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnehrmp/providers/Microsoft.Compute/availabilitySets/javatest1asngyqoh\",\r\n \"name\": \"javatest1asngyqoh\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnehrmp/providers/Microsoft.Compute/virtualMachines/javatestVMxgqpq?api-version=2015-06-15","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"782ae8e4-f04b-4968-be1b-7a692c6c70c1_130844981924640799","x-ms-ratelimit-remaining-subscription-writes":"1197","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"9ed7837f-7c9f-426d-9b6c-159fee9239bf","Date":"Tue, 25 Aug 2015 23:42:17 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T234218Z:9ed7837f-7c9f-426d-9b6c-159fee9239bf","Expires":"-1","Content-Length":"1651","Azure-AsyncOperation":"https://management.azure.com/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/providers/Microsoft.Compute/locations/southeastasia/operations/eb9012b7-8911-40fc-9fe4-b9af91eb1d87?api-version=2015-06-15","x-ms-request-id":"eb9012b7-8911-40fc-9fe4-b9af91eb1d87","Body":"{\r\n \"properties\": {\r\n \"vmId\": \"a6f50375-6187-4e85-b19a-d6d10bb2f1b1\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnehrmp/providers/Microsoft.Compute/availabilitySets/JAVATEST1ASNGYQOH\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1saneqsel.blob.core.windows.net/javatest1conniwxag/ososvhd.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javatestVMxgqpq\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"properties\":{},\"id\":\"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnehrmp/providers/Microsoft.Network/networkInterfaces/javatest1nicndyenf\"}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnehrmp/providers/Microsoft.Compute/virtualMachines/javatestVMxgqpq\",\r\n \"name\": \"javatestVMxgqpq\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/providers/Microsoft.Compute/locations/southeastasia/operations/eb9012b7-8911-40fc-9fe4-b9af91eb1d87?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"782ae8e4-f04b-4968-be1b-7a692c6c70c1_130844981924640799","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14997","StatusCode":"200","x-ms-correlation-request-id":"7d726fc6-a409-45a5-b193-2256a7382918","Date":"Tue, 25 Aug 2015 23:42:18 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T234219Z:7d726fc6-a409-45a5-b193-2256a7382918","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"f05c0f9f-4673-4823-aee1-b322e1d8db17","Body":"{\r\n \"operationId\": \"eb9012b7-8911-40fc-9fe4-b9af91eb1d87\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-25T23:42:15.7652707+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnehrmp/providers/Microsoft.Compute/virtualMachines/javatestVMxgqpq?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"782ae8e4-f04b-4968-be1b-7a692c6c70c1_130844981924640799","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14996","StatusCode":"200","x-ms-correlation-request-id":"296dbca2-fdb8-441e-bc79-b5ee4e743d7b","Date":"Tue, 25 Aug 2015 23:42:18 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T234219Z:296dbca2-fdb8-441e-bc79-b5ee4e743d7b","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1651","x-ms-request-id":"01e008de-07a3-4d23-9725-8720107f4251","Body":"{\r\n \"properties\": {\r\n \"vmId\": \"a6f50375-6187-4e85-b19a-d6d10bb2f1b1\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnehrmp/providers/Microsoft.Compute/availabilitySets/JAVATEST1ASNGYQOH\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1saneqsel.blob.core.windows.net/javatest1conniwxag/ososvhd.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javatestVMxgqpq\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"properties\":{},\"id\":\"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnehrmp/providers/Microsoft.Network/networkInterfaces/javatest1nicndyenf\"}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnehrmp/providers/Microsoft.Compute/virtualMachines/javatestVMxgqpq\",\r\n \"name\": \"javatestVMxgqpq\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourcegroups/javatest2rgkirwv?api-version=2014-04-01-preview","Content-Type":"application/json; charset=utf-8"},{"x-ms-ratelimit-remaining-subscription-writes":"1198","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"57f09883-47af-4eb5-acbf-02559a9aa6de","Date":"Tue, 25 Aug 2015 23:42:20 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T234221Z:57f09883-47af-4eb5-acbf-02559a9aa6de","Expires":"-1","Content-Length":"192","x-ms-request-id":"57f09883-47af-4eb5-acbf-02559a9aa6de","Body":"{\"id\":\"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatest2rgkirwv\",\"name\":\"javatest2rgkirwv\",\"location\":\"southeastasia\",\"properties\":{\"provisioningState\":\"Succeeded\"}}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatest2rgkirwv/providers/Microsoft.Network/virtualnetworks/javatest2vnetnluvxa?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-ratelimit-remaining-subscription-writes":"1196","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"54eee482-a747-4ddd-8680-3428d7ffd551","Date":"Tue, 25 Aug 2015 23:42:23 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"10","x-ms-routing-request-id":"WESTUS:20150825T234224Z:54eee482-a747-4ddd-8680-3428d7ffd551","Expires":"-1","Content-Length":"1060","Azure-AsyncOperation":"https://management.azure.com/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/providers/Microsoft.Network/locations/southeastasia/operations/fa9ff0fd-c6f3-4d69-8e36-7cc02b046312?api-version=2015-05-01-preview","x-ms-request-id":"fa9ff0fd-c6f3-4d69-8e36-7cc02b046312","Body":"{\r\n \"name\": \"javatest2vnetnluvxa\",\r\n \"id\": \"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatest2rgkirwv/providers/Microsoft.Network/virtualNetworks/javatest2vnetnluvxa\",\r\n \"etag\": \"W/\\\"73454909-c3d1-41bf-aa83-038336276cfe\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"3cc7c53f-2034-47cc-818e-31f28831d9a0\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"javatest2subnnlsqol\",\r\n \"id\": \"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatest2rgkirwv/providers/Microsoft.Network/virtualNetworks/javatest2vnetnluvxa/subnets/javatest2subnnlsqol\",\r\n \"etag\": \"W/\\\"73454909-c3d1-41bf-aa83-038336276cfe\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"x-ms-version":"2015-05-01-preview","User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/providers/Microsoft.Network/locations/southeastasia/operations/fa9ff0fd-c6f3-4d69-8e36-7cc02b046312?api-version=2015-05-01-preview"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14995","StatusCode":"200","x-ms-correlation-request-id":"b069e5b0-adb3-4396-9a44-14b8b9641068","Date":"Tue, 25 Aug 2015 23:42:24 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T234225Z:b069e5b0-adb3-4396-9a44-14b8b9641068","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"29","x-ms-request-id":"e3e9b2d3-aeab-479f-8e15-10aeaa52e9fe","Body":"{\r\n \"status\": \"Succeeded\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatest2rgkirwv/providers/Microsoft.Network/virtualnetworks/javatest2vnetnluvxa?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14905","StatusCode":"200","x-ms-correlation-request-id":"eb951a27-45b1-4ce7-8ec9-c52f05035bca","Date":"Tue, 25 Aug 2015 23:42:24 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","ETag":"W/\"693b2c34-0fe6-41ff-a75c-bcfd3a5a17ba\"","x-ms-routing-request-id":"WESTUS:20150825T234225Z:eb951a27-45b1-4ce7-8ec9-c52f05035bca","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1062","x-ms-request-id":"92c0c826-ac35-4d80-9fa5-03feb0efdfd4","Body":"{\r\n \"name\": \"javatest2vnetnluvxa\",\r\n \"id\": \"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatest2rgkirwv/providers/Microsoft.Network/virtualNetworks/javatest2vnetnluvxa\",\r\n \"etag\": \"W/\\\"693b2c34-0fe6-41ff-a75c-bcfd3a5a17ba\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3cc7c53f-2034-47cc-818e-31f28831d9a0\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"javatest2subnnlsqol\",\r\n \"id\": \"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatest2rgkirwv/providers/Microsoft.Network/virtualNetworks/javatest2vnetnluvxa/subnets/javatest2subnnlsqol\",\r\n \"etag\": \"W/\\\"693b2c34-0fe6-41ff-a75c-bcfd3a5a17ba\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatest2rgkirwv/providers/Microsoft.Network/networkInterfaces/javatest2nicnwspcd?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-ratelimit-remaining-subscription-writes":"1198","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"a45c7aca-2fcd-43c2-83fc-8f5182c108b5","Date":"Tue, 25 Aug 2015 23:42:26 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T234227Z:a45c7aca-2fcd-43c2-83fc-8f5182c108b5","Expires":"-1","Content-Length":"1311","Azure-AsyncOperation":"https://management.azure.com/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/providers/Microsoft.Network/locations/southeastasia/operations/21a83cb6-50c6-429c-af75-06e8aaa69859?api-version=2015-05-01-preview","x-ms-request-id":"21a83cb6-50c6-429c-af75-06e8aaa69859","Body":"{\r\n \"name\": \"javatest2nicnwspcd\",\r\n \"id\": \"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatest2rgkirwv/providers/Microsoft.Network/networkInterfaces/javatest2nicnwspcd\",\r\n \"etag\": \"W/\\\"7a766d44-02c6-4958-ac56-b086d6a7f704\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"405ed0b0-6a2f-4402-b9d4-3db9ae5030cd\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"javatest2ipcnuhqwi\",\r\n \"id\": \"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatest2rgkirwv/providers/Microsoft.Network/networkInterfaces/javatest2nicnwspcd/ipConfigurations/javatest2ipcnuhqwi\",\r\n \"etag\": \"W/\\\"7a766d44-02c6-4958-ac56-b086d6a7f704\\\"\",\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/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatest2rgkirwv/providers/Microsoft.Network/virtualNetworks/javatest2vnetnluvxa/subnets/javatest2subnnlsqol\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"x-ms-version":"2015-05-01-preview","User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/providers/Microsoft.Network/locations/southeastasia/operations/21a83cb6-50c6-429c-af75-06e8aaa69859?api-version=2015-05-01-preview"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14998","StatusCode":"200","x-ms-correlation-request-id":"0192ded5-8315-4a27-b3b6-70ace7fff1f3","Date":"Tue, 25 Aug 2015 23:42:27 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T234228Z:0192ded5-8315-4a27-b3b6-70ace7fff1f3","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"29","x-ms-request-id":"55fbe841-ca79-4540-8048-93e125e41357","Body":"{\r\n \"status\": \"Succeeded\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatest2rgkirwv/providers/Microsoft.Network/networkInterfaces/javatest2nicnwspcd?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14904","StatusCode":"200","x-ms-correlation-request-id":"d8587c07-edbc-4223-8611-5740a7b713fc","Date":"Tue, 25 Aug 2015 23:42:27 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","ETag":"W/\"7a766d44-02c6-4958-ac56-b086d6a7f704\"","x-ms-routing-request-id":"WESTUS:20150825T234228Z:d8587c07-edbc-4223-8611-5740a7b713fc","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1311","x-ms-request-id":"c17cb89e-3693-457f-87f2-4a1d69aa318c","Body":"{\r\n \"name\": \"javatest2nicnwspcd\",\r\n \"id\": \"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatest2rgkirwv/providers/Microsoft.Network/networkInterfaces/javatest2nicnwspcd\",\r\n \"etag\": \"W/\\\"7a766d44-02c6-4958-ac56-b086d6a7f704\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"405ed0b0-6a2f-4402-b9d4-3db9ae5030cd\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"javatest2ipcnuhqwi\",\r\n \"id\": \"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatest2rgkirwv/providers/Microsoft.Network/networkInterfaces/javatest2nicnwspcd/ipConfigurations/javatest2ipcnuhqwi\",\r\n \"etag\": \"W/\\\"7a766d44-02c6-4958-ac56-b086d6a7f704\\\"\",\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/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatest2rgkirwv/providers/Microsoft.Network/virtualNetworks/javatest2vnetnluvxa/subnets/javatest2subnnlsqol\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatest2rgkirwv/providers/Microsoft.Compute/availabilitySets/javatest1asngyqoh?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"782ae8e4-f04b-4968-be1b-7a692c6c70c1_130844981924640799","x-ms-ratelimit-remaining-subscription-writes":"1195","Pragma":"no-cache","StatusCode":"200","x-ms-correlation-request-id":"16234502-d77d-412c-9a92-2b0f5195890a","Date":"Tue, 25 Aug 2015 23:42:30 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T234231Z:16234502-d77d-412c-9a92-2b0f5195890a","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"387","x-ms-request-id":"d6f6020c-ff30-4e00-b8bb-d270922a9bf9","Body":"{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatest2rgkirwv/providers/Microsoft.Compute/availabilitySets/javatest1asngyqoh\",\r\n \"name\": \"javatest1asngyqoh\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatest2rgkirwv/providers/Microsoft.Compute/virtualMachines/javatest2Vmwfep?api-version=2015-06-15","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"782ae8e4-f04b-4968-be1b-7a692c6c70c1_130844981924640799","x-ms-ratelimit-remaining-subscription-writes":"1194","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"67f584e7-dc60-4056-91da-084d9e5da0d2","Date":"Tue, 25 Aug 2015 23:42:33 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T234233Z:67f584e7-dc60-4056-91da-084d9e5da0d2","Expires":"-1","Content-Length":"1640","Azure-AsyncOperation":"https://management.azure.com/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/providers/Microsoft.Compute/locations/southeastasia/operations/00973bc5-8fca-4afe-8543-aff0bf58cde2?api-version=2015-06-15","x-ms-request-id":"00973bc5-8fca-4afe-8543-aff0bf58cde2","Body":"{\r\n \"properties\": {\r\n \"vmId\": \"68947946-f27e-43da-b5ec-850898566801\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatest2rgkirwv/providers/Microsoft.Compute/availabilitySets/JAVATEST1ASNGYQOH\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1saneqsel.blob.core.windows.net/javatest2connfimpy/ososvhd.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javatest2Vmwfep\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"properties\":{},\"id\":\"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatest2rgkirwv/providers/Microsoft.Network/networkInterfaces/javatest2nicnwspcd\"}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatest2rgkirwv/providers/Microsoft.Compute/virtualMachines/javatest2Vmwfep\",\r\n \"name\": \"javatest2Vmwfep\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/providers/Microsoft.Compute/locations/southeastasia/operations/00973bc5-8fca-4afe-8543-aff0bf58cde2?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"782ae8e4-f04b-4968-be1b-7a692c6c70c1_130844981924640799","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14994","StatusCode":"200","x-ms-correlation-request-id":"b81c586a-008f-4dbd-ab61-75cb6914ebd0","Date":"Tue, 25 Aug 2015 23:42:34 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T234234Z:b81c586a-008f-4dbd-ab61-75cb6914ebd0","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"6e2161e2-994d-4b39-8b99-497f82d9e4d9","Body":"{\r\n \"operationId\": \"00973bc5-8fca-4afe-8543-aff0bf58cde2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-25T23:42:31.9371533+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatest2rgkirwv/providers/Microsoft.Compute/virtualMachines/javatest2Vmwfep?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"782ae8e4-f04b-4968-be1b-7a692c6c70c1_130844981924640799","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14993","StatusCode":"200","x-ms-correlation-request-id":"d73d58fd-9811-4b6c-a8bb-0389bcd8207b","Date":"Tue, 25 Aug 2015 23:42:34 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T234234Z:d73d58fd-9811-4b6c-a8bb-0389bcd8207b","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1640","x-ms-request-id":"7189c387-2e84-4d87-a930-ef7ef881a1be","Body":"{\r\n \"properties\": {\r\n \"vmId\": \"68947946-f27e-43da-b5ec-850898566801\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatest2rgkirwv/providers/Microsoft.Compute/availabilitySets/JAVATEST1ASNGYQOH\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1saneqsel.blob.core.windows.net/javatest2connfimpy/ososvhd.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javatest2Vmwfep\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"properties\":{},\"id\":\"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatest2rgkirwv/providers/Microsoft.Network/networkInterfaces/javatest2nicnwspcd\"}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatest2rgkirwv/providers/Microsoft.Compute/virtualMachines/javatest2Vmwfep\",\r\n \"name\": \"javatest2Vmwfep\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/providers/Microsoft.Compute/virtualMachines?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"782ae8e4-f04b-4968-be1b-7a692c6c70c1_130844981924640799","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14992","StatusCode":"200","x-ms-correlation-request-id":"ebedd336-b631-4cd7-9007-917e5d7b6ced","Date":"Tue, 25 Aug 2015 23:42:34 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T234234Z:ebedd336-b631-4cd7-9007-917e5d7b6ced","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"3679","x-ms-request-id":"a6ba0291-3544-4d3b-b4c2-9121cfc9ee45","Body":"{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"vmId\": \"68947946-f27e-43da-b5ec-850898566801\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/JAVATEST2RGKIRWV/providers/Microsoft.Compute/availabilitySets/JAVATEST1ASNGYQOH\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1saneqsel.blob.core.windows.net/javatest2connfimpy/ososvhd.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javatest2Vmwfep\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"properties\":{},\"id\":\"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatest2rgkirwv/providers/Microsoft.Network/networkInterfaces/javatest2nicnwspcd\"}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/JAVATEST2RGKIRWV/providers/Microsoft.Compute/virtualMachines/javatest2Vmwfep\",\r\n \"name\": \"javatest2Vmwfep\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"vmId\": \"a6f50375-6187-4e85-b19a-d6d10bb2f1b1\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/JAVATESTRGNEHRMP/providers/Microsoft.Compute/availabilitySets/JAVATEST1ASNGYQOH\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1saneqsel.blob.core.windows.net/javatest1conniwxag/ososvhd.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javatestVMxgqpq\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"properties\":{},\"id\":\"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnehrmp/providers/Microsoft.Network/networkInterfaces/javatest1nicndyenf\"}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/JAVATESTRGNEHRMP/providers/Microsoft.Compute/virtualMachines/javatestVMxgqpq\",\r\n \"name\": \"javatestVMxgqpq\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}","Content-Type":"application/json; charset=utf-8"}] \ No newline at end of file +[{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/SouthEastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?api-version=2015-06-15&$top=1","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14996","StatusCode":"200","x-ms-correlation-request-id":"a54119ee-af7a-43da-bfbe-e0cfd2b97e4a","Date":"Mon, 19 Oct 2015 20:01:19 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200120Z:a54119ee-af7a-43da-bfbe-e0cfd2b97e4a","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"313","x-ms-request-id":"6354a63d-949c-459e-8c42-6ca5076bfee5","Body":"[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201506\",\r\n \"id\": \"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201506\"\r\n }\r\n]","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/javatestrgnhzalg?api-version=2014-04-01-preview","Content-Type":"application/json; charset=utf-8"},{"x-ms-ratelimit-remaining-subscription-writes":"1193","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"edde2cfa-6310-4b3f-a3e1-830f27b01351","Date":"Mon, 19 Oct 2015 20:01:21 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200121Z:edde2cfa-6310-4b3f-a3e1-830f27b01351","Expires":"-1","Content-Length":"192","x-ms-request-id":"edde2cfa-6310-4b3f-a3e1-830f27b01351","Body":"{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnhzalg\",\"name\":\"javatestrgnhzalg\",\"location\":\"southeastasia\",\"properties\":{\"provisioningState\":\"Succeeded\"}}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnhzalg/providers/Microsoft.Storage/storageAccounts/javatest1sangacvb?api-version=2015-06-15","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-ratelimit-remaining-subscription-writes":"1191","Pragma":"no-cache","StatusCode":"202","x-ms-correlation-request-id":"65212a22-eda3-4e72-b8ab-680f779a48a5","Date":"Mon, 19 Oct 2015 20:01:24 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"25","x-ms-routing-request-id":"WESTUS:20151019T200124Z:65212a22-eda3-4e72-b8ab-680f779a48a5","Expires":"-1","Content-Length":"0","x-ms-request-id":"65212a22-eda3-4e72-b8ab-680f779a48a5","Body":"","Location":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/operations/0a214661-7583-4a64-b48e-db060d3ebd7c?monitor=true&api-version=2015-06-15"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/operations/0a214661-7583-4a64-b48e-db060d3ebd7c?monitor=true&api-version=2015-06-15"},{"Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14921","StatusCode":"202","x-ms-correlation-request-id":"84591cda-5472-4071-9165-cededec6d18f","Date":"Mon, 19 Oct 2015 20:01:24 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"25","x-ms-routing-request-id":"WESTUS:20151019T200124Z:84591cda-5472-4071-9165-cededec6d18f","Expires":"-1","Content-Length":"0","x-ms-request-id":"84591cda-5472-4071-9165-cededec6d18f","Body":"","Location":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/operations/0a214661-7583-4a64-b48e-db060d3ebd7c?monitor=true&api-version=2015-06-15"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/operations/0a214661-7583-4a64-b48e-db060d3ebd7c?monitor=true&api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14920","StatusCode":"200","x-ms-correlation-request-id":"f15e275b-6b3c-487a-9605-99401004a736","Date":"Mon, 19 Oct 2015 20:01:49 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200150Z:f15e275b-6b3c-487a-9605-99401004a736","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"72","x-ms-request-id":"f15e275b-6b3c-487a-9605-99401004a736","Body":"{\"location\":\"SouthEastAsia\",\"properties\":{\"accountType\":\"Standard_LRS\"}}","Content-Type":"application/json"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnhzalg/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14995","StatusCode":"200","x-ms-correlation-request-id":"a707f9b6-ab94-4674-bdbb-8694947ed1e4","Date":"Mon, 19 Oct 2015 20:01:50 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200150Z:a707f9b6-ab94-4674-bdbb-8694947ed1e4","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"717","x-ms-request-id":"a707f9b6-ab94-4674-bdbb-8694947ed1e4","Body":"{\"value\":[{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnhzalg/providers/Microsoft.Storage/storageAccounts/javatest1sangacvb\",\"location\":\"southeastasia\",\"name\":\"javatest1sangacvb\",\"properties\":{\"accountType\":\"Standard_LRS\",\"creationTime\":\"2015-10-19T20:01:24.0223692Z\",\"primaryEndpoints\":{\"blob\":\"https://javatest1sangacvb.blob.core.windows.net/\",\"file\":\"https://javatest1sangacvb.file.core.windows.net/\",\"queue\":\"https://javatest1sangacvb.queue.core.windows.net/\",\"table\":\"https://javatest1sangacvb.table.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}]}\n","Content-Type":"application/json"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnhzalg/providers/Microsoft.Network/virtualnetworks/javatest1vnetnrytby?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-ratelimit-remaining-subscription-writes":"1192","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"5509e439-bdfa-4d90-a615-69211a6853c3","Date":"Mon, 19 Oct 2015 20:01:54 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"10","x-ms-routing-request-id":"WESTUS:20151019T200155Z:5509e439-bdfa-4d90-a615-69211a6853c3","Expires":"-1","Content-Length":"1108","Azure-AsyncOperation":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/southeastasia/operations/de256ecb-91cd-4418-9820-5ec4c9f0b0d9?api-version=2015-05-01-preview","x-ms-request-id":"de256ecb-91cd-4418-9820-5ec4c9f0b0d9","Body":"{\r\n \"name\": \"javatest1vnetnrytby\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnhzalg/providers/Microsoft.Network/virtualNetworks/javatest1vnetnrytby\",\r\n \"etag\": \"W/\\\"4a997231-3f9a-43df-b8eb-4875300b1fa7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"3302f8eb-6770-402c-92d3-b863fa7213b0\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"javatest1subnnhixgq\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnhzalg/providers/Microsoft.Network/virtualNetworks/javatest1vnetnrytby/subnets/javatest1subnnhixgq\",\r\n \"etag\": \"W/\\\"4a997231-3f9a-43df-b8eb-4875300b1fa7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"},{"x-ms-version":"2015-05-01-preview","User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/southeastasia/operations/de256ecb-91cd-4418-9820-5ec4c9f0b0d9?api-version=2015-05-01-preview"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14992","StatusCode":"200","x-ms-correlation-request-id":"3f8fdca0-6d4a-4d2e-a039-eb2388acdcc5","Date":"Mon, 19 Oct 2015 20:01:55 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200156Z:3f8fdca0-6d4a-4d2e-a039-eb2388acdcc5","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"29","x-ms-request-id":"31967377-fe00-4c8d-8d69-f6d1bc4e5f1c","Body":"{\r\n \"status\": \"Succeeded\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnhzalg/providers/Microsoft.Network/virtualnetworks/javatest1vnetnrytby?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14990","StatusCode":"200","x-ms-correlation-request-id":"ae7d99bc-5a9f-4f6e-8f19-1272741e40da","Date":"Mon, 19 Oct 2015 20:01:57 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","ETag":"W/\"c7e5f8f5-8bff-4abb-b51b-de31984f447b\"","x-ms-routing-request-id":"WESTUS:20151019T200157Z:ae7d99bc-5a9f-4f6e-8f19-1272741e40da","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1110","x-ms-request-id":"290ce942-d0b6-4985-8364-5494b40d531d","Body":"{\r\n \"name\": \"javatest1vnetnrytby\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnhzalg/providers/Microsoft.Network/virtualNetworks/javatest1vnetnrytby\",\r\n \"etag\": \"W/\\\"c7e5f8f5-8bff-4abb-b51b-de31984f447b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3302f8eb-6770-402c-92d3-b863fa7213b0\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"javatest1subnnhixgq\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnhzalg/providers/Microsoft.Network/virtualNetworks/javatest1vnetnrytby/subnets/javatest1subnnhixgq\",\r\n \"etag\": \"W/\\\"c7e5f8f5-8bff-4abb-b51b-de31984f447b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnhzalg/providers/Microsoft.Network/networkInterfaces/javatest1nicnqmacj?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-ratelimit-remaining-subscription-writes":"1193","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"cd599c48-cb0c-497f-90a2-92505f37fc2b","Date":"Mon, 19 Oct 2015 20:02:01 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200201Z:cd599c48-cb0c-497f-90a2-92505f37fc2b","Expires":"-1","Content-Length":"1361","Azure-AsyncOperation":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/southeastasia/operations/35c36c88-d5d0-4014-bc32-68968ed3636b?api-version=2015-05-01-preview","x-ms-request-id":"35c36c88-d5d0-4014-bc32-68968ed3636b","Body":"{\r\n \"name\": \"javatest1nicnqmacj\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnhzalg/providers/Microsoft.Network/networkInterfaces/javatest1nicnqmacj\",\r\n \"etag\": \"W/\\\"1014796d-ae54-4e9e-b1ac-f79c52d761cb\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8c188e83-098d-492b-b063-86256a420a22\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"javatest1ipcntgubs\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnhzalg/providers/Microsoft.Network/networkInterfaces/javatest1nicnqmacj/ipConfigurations/javatest1ipcntgubs\",\r\n \"etag\": \"W/\\\"1014796d-ae54-4e9e-b1ac-f79c52d761cb\\\"\",\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/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnhzalg/providers/Microsoft.Network/virtualNetworks/javatest1vnetnrytby/subnets/javatest1subnnhixgq\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"},{"x-ms-version":"2015-05-01-preview","User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/southeastasia/operations/35c36c88-d5d0-4014-bc32-68968ed3636b?api-version=2015-05-01-preview"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14994","StatusCode":"200","x-ms-correlation-request-id":"1e876202-6e48-4c6a-8464-74d4ce7d109b","Date":"Mon, 19 Oct 2015 20:02:02 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200202Z:1e876202-6e48-4c6a-8464-74d4ce7d109b","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"29","x-ms-request-id":"4d5450b5-7428-451f-9819-f558318f6cef","Body":"{\r\n \"status\": \"Succeeded\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnhzalg/providers/Microsoft.Network/networkInterfaces/javatest1nicnqmacj?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14989","StatusCode":"200","x-ms-correlation-request-id":"4cf1b3e8-5ba9-4432-93a0-12b1a37aba56","Date":"Mon, 19 Oct 2015 20:02:03 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","ETag":"W/\"1014796d-ae54-4e9e-b1ac-f79c52d761cb\"","x-ms-routing-request-id":"WESTUS:20151019T200203Z:4cf1b3e8-5ba9-4432-93a0-12b1a37aba56","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1361","x-ms-request-id":"7691d44b-118c-43f5-a2a3-dd16dbd61d3e","Body":"{\r\n \"name\": \"javatest1nicnqmacj\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnhzalg/providers/Microsoft.Network/networkInterfaces/javatest1nicnqmacj\",\r\n \"etag\": \"W/\\\"1014796d-ae54-4e9e-b1ac-f79c52d761cb\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8c188e83-098d-492b-b063-86256a420a22\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"javatest1ipcntgubs\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnhzalg/providers/Microsoft.Network/networkInterfaces/javatest1nicnqmacj/ipConfigurations/javatest1ipcntgubs\",\r\n \"etag\": \"W/\\\"1014796d-ae54-4e9e-b1ac-f79c52d761cb\\\"\",\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/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnhzalg/providers/Microsoft.Network/virtualNetworks/javatest1vnetnrytby/subnets/javatest1subnnhixgq\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnhzalg/providers/Microsoft.Compute/availabilitySets/javatest1asnkdqss?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","x-ms-ratelimit-remaining-subscription-writes":"1192","Pragma":"no-cache","StatusCode":"200","x-ms-correlation-request-id":"77841a13-1dfd-4309-b061-3bff6658f36b","Date":"Mon, 19 Oct 2015 20:02:06 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200206Z:77841a13-1dfd-4309-b061-3bff6658f36b","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"387","x-ms-request-id":"d7b84913-2032-4b06-8135-91c782735fed","Body":"{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnhzalg/providers/Microsoft.Compute/availabilitySets/javatest1asnkdqss\",\r\n \"name\": \"javatest1asnkdqss\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnhzalg/providers/Microsoft.Compute/virtualMachines/javatestVMrudbu?api-version=2015-06-15","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","x-ms-ratelimit-remaining-subscription-writes":"1191","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"ef04703a-0faf-47b6-af39-0ef430eb230b","Date":"Mon, 19 Oct 2015 20:02:08 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200209Z:ef04703a-0faf-47b6-af39-0ef430eb230b","Expires":"-1","Content-Length":"1651","Azure-AsyncOperation":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/18500e89-6e51-4987-ae76-0651d1977aef?api-version=2015-06-15","x-ms-request-id":"18500e89-6e51-4987-ae76-0651d1977aef","Body":"{\r\n \"properties\": {\r\n \"vmId\": \"0416baf9-7508-47b1-a3f4-be859b9c8d66\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnhzalg/providers/Microsoft.Compute/availabilitySets/JAVATEST1ASNKDQSS\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201506\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1sangacvb.blob.core.windows.net/javatest1connjeciv/ososvhd.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javatestVMrudbu\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"properties\":{},\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnhzalg/providers/Microsoft.Network/networkInterfaces/javatest1nicnqmacj\"}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnhzalg/providers/Microsoft.Compute/virtualMachines/javatestVMrudbu\",\r\n \"name\": \"javatestVMrudbu\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/18500e89-6e51-4987-ae76-0651d1977aef?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14993","StatusCode":"200","x-ms-correlation-request-id":"53b1c0ae-859f-4fd5-92de-552426894bd5","Date":"Mon, 19 Oct 2015 20:02:09 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200210Z:53b1c0ae-859f-4fd5-92de-552426894bd5","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"8349978a-6efe-42f6-ad0d-f7062f15cb63","Body":"{\r\n \"operationId\": \"18500e89-6e51-4987-ae76-0651d1977aef\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:02:08.0385771+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnhzalg/providers/Microsoft.Compute/virtualMachines/javatestVMrudbu?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14992","StatusCode":"200","x-ms-correlation-request-id":"4f5e33bc-d140-488b-89d4-c6411b2c1a4c","Date":"Mon, 19 Oct 2015 20:02:10 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200210Z:4f5e33bc-d140-488b-89d4-c6411b2c1a4c","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1651","x-ms-request-id":"ef36935e-6307-4477-bc5e-9b17088b5afd","Body":"{\r\n \"properties\": {\r\n \"vmId\": \"0416baf9-7508-47b1-a3f4-be859b9c8d66\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnhzalg/providers/Microsoft.Compute/availabilitySets/JAVATEST1ASNKDQSS\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201506\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1sangacvb.blob.core.windows.net/javatest1connjeciv/ososvhd.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javatestVMrudbu\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"properties\":{},\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnhzalg/providers/Microsoft.Network/networkInterfaces/javatest1nicnqmacj\"}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnhzalg/providers/Microsoft.Compute/virtualMachines/javatestVMrudbu\",\r\n \"name\": \"javatestVMrudbu\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/javatest2rgxaded?api-version=2014-04-01-preview","Content-Type":"application/json; charset=utf-8"},{"x-ms-ratelimit-remaining-subscription-writes":"1191","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"a0b1e319-89f6-4491-9573-15aa17b04868","Date":"Mon, 19 Oct 2015 20:02:11 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200211Z:a0b1e319-89f6-4491-9573-15aa17b04868","Expires":"-1","Content-Length":"192","x-ms-request-id":"a0b1e319-89f6-4491-9573-15aa17b04868","Body":"{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatest2rgxaded\",\"name\":\"javatest2rgxaded\",\"location\":\"southeastasia\",\"properties\":{\"provisioningState\":\"Succeeded\"}}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatest2rgxaded/providers/Microsoft.Network/virtualnetworks/javatest2vnetngeslf?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-ratelimit-remaining-subscription-writes":"1196","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"b297d401-47fa-4a33-8efd-d886dcf9354b","Date":"Mon, 19 Oct 2015 20:02:16 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"10","x-ms-routing-request-id":"WESTUS:20151019T200217Z:b297d401-47fa-4a33-8efd-d886dcf9354b","Expires":"-1","Content-Length":"1108","Azure-AsyncOperation":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/southeastasia/operations/b218112e-c78e-4cee-b381-49bb5e5cb5ee?api-version=2015-05-01-preview","x-ms-request-id":"b218112e-c78e-4cee-b381-49bb5e5cb5ee","Body":"{\r\n \"name\": \"javatest2vnetngeslf\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatest2rgxaded/providers/Microsoft.Network/virtualNetworks/javatest2vnetngeslf\",\r\n \"etag\": \"W/\\\"b51ca6fc-2fc3-4a05-b333-3c52e8704964\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"fd778e79-4359-4876-bbfd-9edea45897d2\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"javatest2subnnurrnr\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatest2rgxaded/providers/Microsoft.Network/virtualNetworks/javatest2vnetngeslf/subnets/javatest2subnnurrnr\",\r\n \"etag\": \"W/\\\"b51ca6fc-2fc3-4a05-b333-3c52e8704964\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"},{"x-ms-version":"2015-05-01-preview","User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/southeastasia/operations/b218112e-c78e-4cee-b381-49bb5e5cb5ee?api-version=2015-05-01-preview"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14991","StatusCode":"200","x-ms-correlation-request-id":"a37d21aa-82fb-41bb-b3ef-66bd19f611e5","Date":"Mon, 19 Oct 2015 20:02:17 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200218Z:a37d21aa-82fb-41bb-b3ef-66bd19f611e5","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"29","x-ms-request-id":"b223b776-4977-4016-b150-311f4830880c","Body":"{\r\n \"status\": \"Succeeded\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatest2rgxaded/providers/Microsoft.Network/virtualnetworks/javatest2vnetngeslf?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14988","StatusCode":"200","x-ms-correlation-request-id":"2265af06-83a8-403b-96ec-92dc5e0a3ed0","Date":"Mon, 19 Oct 2015 20:02:17 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","ETag":"W/\"81692023-7fe1-4125-bcd5-0d00b9766505\"","x-ms-routing-request-id":"WESTUS:20151019T200218Z:2265af06-83a8-403b-96ec-92dc5e0a3ed0","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1110","x-ms-request-id":"097d00a5-f0e1-4771-9d73-76c49573b9dc","Body":"{\r\n \"name\": \"javatest2vnetngeslf\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatest2rgxaded/providers/Microsoft.Network/virtualNetworks/javatest2vnetngeslf\",\r\n \"etag\": \"W/\\\"81692023-7fe1-4125-bcd5-0d00b9766505\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fd778e79-4359-4876-bbfd-9edea45897d2\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"javatest2subnnurrnr\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatest2rgxaded/providers/Microsoft.Network/virtualNetworks/javatest2vnetngeslf/subnets/javatest2subnnurrnr\",\r\n \"etag\": \"W/\\\"81692023-7fe1-4125-bcd5-0d00b9766505\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatest2rgxaded/providers/Microsoft.Network/networkInterfaces/javatest2nicnbxrzd?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-ratelimit-remaining-subscription-writes":"1190","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"8fa2003c-adb5-4b2d-b1b8-728ab4ebda6a","Date":"Mon, 19 Oct 2015 20:02:22 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200222Z:8fa2003c-adb5-4b2d-b1b8-728ab4ebda6a","Expires":"-1","Content-Length":"1361","Azure-AsyncOperation":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/southeastasia/operations/13ae9782-0e13-438d-821e-482166e0e8bd?api-version=2015-05-01-preview","x-ms-request-id":"13ae9782-0e13-438d-821e-482166e0e8bd","Body":"{\r\n \"name\": \"javatest2nicnbxrzd\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatest2rgxaded/providers/Microsoft.Network/networkInterfaces/javatest2nicnbxrzd\",\r\n \"etag\": \"W/\\\"f69edef3-7a99-4155-b02b-ef98935f7b0e\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1a6df965-2095-4644-9c3d-24d233fdb556\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"javatest2ipcnblxuw\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatest2rgxaded/providers/Microsoft.Network/networkInterfaces/javatest2nicnbxrzd/ipConfigurations/javatest2ipcnblxuw\",\r\n \"etag\": \"W/\\\"f69edef3-7a99-4155-b02b-ef98935f7b0e\\\"\",\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/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatest2rgxaded/providers/Microsoft.Network/virtualNetworks/javatest2vnetngeslf/subnets/javatest2subnnurrnr\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"},{"x-ms-version":"2015-05-01-preview","User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/southeastasia/operations/13ae9782-0e13-438d-821e-482166e0e8bd?api-version=2015-05-01-preview"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14919","StatusCode":"200","x-ms-correlation-request-id":"fcdfce97-4ae4-4820-ae7c-ab9ec93b492e","Date":"Mon, 19 Oct 2015 20:02:23 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200223Z:fcdfce97-4ae4-4820-ae7c-ab9ec93b492e","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"29","x-ms-request-id":"645fb11c-d103-438c-9e1d-fedb45d407d0","Body":"{\r\n \"status\": \"Succeeded\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatest2rgxaded/providers/Microsoft.Network/networkInterfaces/javatest2nicnbxrzd?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14987","StatusCode":"200","x-ms-correlation-request-id":"80addb14-77b7-453e-8784-04b82ae226cb","Date":"Mon, 19 Oct 2015 20:02:23 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","ETag":"W/\"f69edef3-7a99-4155-b02b-ef98935f7b0e\"","x-ms-routing-request-id":"WESTUS:20151019T200224Z:80addb14-77b7-453e-8784-04b82ae226cb","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1361","x-ms-request-id":"eabaf769-fa51-4068-8366-fef4f5b606ff","Body":"{\r\n \"name\": \"javatest2nicnbxrzd\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatest2rgxaded/providers/Microsoft.Network/networkInterfaces/javatest2nicnbxrzd\",\r\n \"etag\": \"W/\\\"f69edef3-7a99-4155-b02b-ef98935f7b0e\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1a6df965-2095-4644-9c3d-24d233fdb556\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"javatest2ipcnblxuw\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatest2rgxaded/providers/Microsoft.Network/networkInterfaces/javatest2nicnbxrzd/ipConfigurations/javatest2ipcnblxuw\",\r\n \"etag\": \"W/\\\"f69edef3-7a99-4155-b02b-ef98935f7b0e\\\"\",\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/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatest2rgxaded/providers/Microsoft.Network/virtualNetworks/javatest2vnetngeslf/subnets/javatest2subnnurrnr\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatest2rgxaded/providers/Microsoft.Compute/availabilitySets/javatest1asnkdqss?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","x-ms-ratelimit-remaining-subscription-writes":"1190","Pragma":"no-cache","StatusCode":"200","x-ms-correlation-request-id":"ad36aa59-8d40-4802-8afa-2a903540b3a3","Date":"Mon, 19 Oct 2015 20:02:26 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200226Z:ad36aa59-8d40-4802-8afa-2a903540b3a3","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"387","x-ms-request-id":"ac996f7b-3b10-4d1c-b432-7baec750e2a1","Body":"{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatest2rgxaded/providers/Microsoft.Compute/availabilitySets/javatest1asnkdqss\",\r\n \"name\": \"javatest1asnkdqss\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatest2rgxaded/providers/Microsoft.Compute/virtualMachines/javatest2Veizfa?api-version=2015-06-15","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","x-ms-ratelimit-remaining-subscription-writes":"1189","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"7f213217-9363-4892-9734-3c405cbd39d2","Date":"Mon, 19 Oct 2015 20:02:28 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200228Z:7f213217-9363-4892-9734-3c405cbd39d2","Expires":"-1","Content-Length":"1640","Azure-AsyncOperation":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/72e19612-b74b-45f0-9a6d-9a70becbc26c?api-version=2015-06-15","x-ms-request-id":"72e19612-b74b-45f0-9a6d-9a70becbc26c","Body":"{\r\n \"properties\": {\r\n \"vmId\": \"0d1a1b5c-e228-4cec-a0a5-3b5c00c117e3\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatest2rgxaded/providers/Microsoft.Compute/availabilitySets/JAVATEST1ASNKDQSS\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1sangacvb.blob.core.windows.net/javatest2connfoabl/ososvhd.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javatest2Veizfa\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"properties\":{},\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatest2rgxaded/providers/Microsoft.Network/networkInterfaces/javatest2nicnbxrzd\"}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatest2rgxaded/providers/Microsoft.Compute/virtualMachines/javatest2Veizfa\",\r\n \"name\": \"javatest2Veizfa\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/72e19612-b74b-45f0-9a6d-9a70becbc26c?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14991","StatusCode":"200","x-ms-correlation-request-id":"ce63aa7e-1d1a-454f-b26b-767149059acf","Date":"Mon, 19 Oct 2015 20:02:29 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200229Z:ce63aa7e-1d1a-454f-b26b-767149059acf","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"952a9828-0e4a-435d-b398-9d44d67fd315","Body":"{\r\n \"operationId\": \"72e19612-b74b-45f0-9a6d-9a70becbc26c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:02:27.3979591+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatest2rgxaded/providers/Microsoft.Compute/virtualMachines/javatest2Veizfa?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14990","StatusCode":"200","x-ms-correlation-request-id":"4e86353a-5c12-4f71-a0c3-ce700cad429c","Date":"Mon, 19 Oct 2015 20:02:29 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200229Z:4e86353a-5c12-4f71-a0c3-ce700cad429c","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1640","x-ms-request-id":"3ad891b2-5036-4c5f-ac66-8e3efb935898","Body":"{\r\n \"properties\": {\r\n \"vmId\": \"0d1a1b5c-e228-4cec-a0a5-3b5c00c117e3\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatest2rgxaded/providers/Microsoft.Compute/availabilitySets/JAVATEST1ASNKDQSS\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1sangacvb.blob.core.windows.net/javatest2connfoabl/ososvhd.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javatest2Veizfa\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"properties\":{},\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatest2rgxaded/providers/Microsoft.Network/networkInterfaces/javatest2nicnbxrzd\"}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatest2rgxaded/providers/Microsoft.Compute/virtualMachines/javatest2Veizfa\",\r\n \"name\": \"javatest2Veizfa\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/virtualMachines?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14989","StatusCode":"200","x-ms-correlation-request-id":"b984c493-824f-43c8-b55a-4e7652a11461","Date":"Mon, 19 Oct 2015 20:02:29 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200229Z:b984c493-824f-43c8-b55a-4e7652a11461","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"5754","x-ms-request-id":"c63e613a-3e0c-4333-89f5-ff4052efa882","Body":"{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"vmId\": \"0d1a1b5c-e228-4cec-a0a5-3b5c00c117e3\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/JAVATEST2RGXADED/providers/Microsoft.Compute/availabilitySets/JAVATEST1ASNKDQSS\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1sangacvb.blob.core.windows.net/javatest2connfoabl/ososvhd.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javatest2Veizfa\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"properties\":{},\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatest2rgxaded/providers/Microsoft.Network/networkInterfaces/javatest2nicnbxrzd\"}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/JAVATEST2RGXADED/providers/Microsoft.Compute/virtualMachines/javatest2Veizfa\",\r\n \"name\": \"javatest2Veizfa\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"vmId\": \"0416baf9-7508-47b1-a3f4-be859b9c8d66\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/JAVATESTRGNHZALG/providers/Microsoft.Compute/availabilitySets/JAVATEST1ASNKDQSS\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201506\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1sangacvb.blob.core.windows.net/javatest1connjeciv/ososvhd.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javatestVMrudbu\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"properties\":{},\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnhzalg/providers/Microsoft.Network/networkInterfaces/javatest1nicnqmacj\"}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/JAVATESTRGNHZALG/providers/Microsoft.Compute/virtualMachines/javatestVMrudbu\",\r\n \"name\": \"javatestVMrudbu\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"vmId\": \"e72082e1-080e-452e-b8c2-ca55260f7f8e\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/JAVATESTRGNYNLEB/providers/Microsoft.Compute/availabilitySets/JAVATEST1ASNYYVEF\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201506\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1sankdwie.blob.core.windows.net/javatest1connpfgha/ososvhd.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javatestvmqmrqf\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"properties\":{},\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnynleb/providers/Microsoft.Network/networkInterfaces/javatest1nicnmppab\"}]},\r\n \"provisioningState\": \"Deleting\"\r\n },\r\n \"resources\": [\r\n {\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/JAVATESTRGNYNLEB/providers/Microsoft.Compute/virtualMachines/javatestvmqmrqf/extensions/javatestext1\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/JAVATESTRGNYNLEB/providers/Microsoft.Compute/virtualMachines/javatestvmqmrqf\",\r\n \"name\": \"javatestvmqmrqf\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}","Content-Type":"application/json; charset=utf-8"}] \ No newline at end of file diff --git a/resource-management/azure-mgmt-utility/src/test/resources/session-records/testListVMSizes.json b/resource-management/azure-mgmt-utility/src/test/resources/session-records/testListVMSizes.json index cb4de6a0069a..fb87ee0f2e25 100644 --- a/resource-management/azure-mgmt-utility/src/test/resources/session-records/testListVMSizes.json +++ b/resource-management/azure-mgmt-utility/src/test/resources/session-records/testListVMSizes.json @@ -1 +1 @@ -[{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/SouthEastAsia/vmSizes?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130834748847794074","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14974","StatusCode":"200","x-ms-correlation-request-id":"161f4b2e-0a7b-40d0-9faa-d2f7753b45f5","Date":"Fri, 14 Aug 2015 22:56:39 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T225639Z:161f4b2e-0a7b-40d0-9faa-d2f7753b45f5","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"5867","x-ms-request-id":"14cb54b6-cbb4-4913-bdef-32c806a71f62","Body":"{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_DS1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 7168,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_DS2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28762,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28762,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57244,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n }\r\n ]\r\n}","Content-Type":"application/json; charset=utf-8"}] \ No newline at end of file +[{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/SouthEastAsia/vmSizes?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14904","StatusCode":"200","x-ms-correlation-request-id":"eaa5961e-971d-4cd4-b9e8-4237ada0afed","Date":"Mon, 19 Oct 2015 20:23:47 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T202348Z:eaa5961e-971d-4cd4-b9e8-4237ada0afed","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"5867","x-ms-request-id":"86de9ab5-92b4-486b-b0e2-dd732784c069","Body":"{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_DS1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 7168,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_DS2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28762,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28762,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57244,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n }\r\n ]\r\n}","Content-Type":"application/json; charset=utf-8"}] \ No newline at end of file diff --git a/resource-management/azure-mgmt-utility/src/test/resources/session-records/testVMDataDiskScenario.json b/resource-management/azure-mgmt-utility/src/test/resources/session-records/testVMDataDiskScenario.json index e610ff03d70a..0c6425d35229 100644 --- a/resource-management/azure-mgmt-utility/src/test/resources/session-records/testVMDataDiskScenario.json +++ b/resource-management/azure-mgmt-utility/src/test/resources/session-records/testVMDataDiskScenario.json @@ -1 +1 @@ -[{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/providers/Microsoft.Compute/locations/SouthEastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?api-version=2015-06-15&$top=1","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14872","StatusCode":"200","x-ms-correlation-request-id":"94586130-267f-4ef1-8796-6ad4be6a6db9","Date":"Fri, 21 Aug 2015 22:10:03 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150821T221004Z:94586130-267f-4ef1-8796-6ad4be6a6db9","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"313","x-ms-request-id":"992fe08e-e5d9-4eb1-b191-73a1f135660a","Body":"[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201505\",\r\n \"id\": \"/Subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201505\"\r\n }\r\n]","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourcegroups/javatestrgnroudi?api-version=2014-04-01-preview","Content-Type":"application/json; charset=utf-8"},{"x-ms-ratelimit-remaining-subscription-writes":"1193","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"644c7bff-bb52-4938-94d9-f51b413feceb","Date":"Fri, 21 Aug 2015 22:10:06 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150821T221006Z:644c7bff-bb52-4938-94d9-f51b413feceb","Expires":"-1","Content-Length":"192","x-ms-request-id":"644c7bff-bb52-4938-94d9-f51b413feceb","Body":"{\"id\":\"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnroudi\",\"name\":\"javatestrgnroudi\",\"location\":\"southeastasia\",\"properties\":{\"provisioningState\":\"Succeeded\"}}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnroudi/providers/Microsoft.Storage/storageAccounts/javatest1sanhahlv?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-ratelimit-remaining-subscription-writes":"1193","Pragma":"no-cache","StatusCode":"202","x-ms-correlation-request-id":"4543b70f-1fae-42bb-b6fe-0ab5c68d6541","Date":"Fri, 21 Aug 2015 22:10:11 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"25","x-ms-routing-request-id":"WESTUS:20150821T221011Z:4543b70f-1fae-42bb-b6fe-0ab5c68d6541","Expires":"-1","Content-Length":"4","x-ms-request-id":"b3cbc3e7-978d-4578-b94f-3df67c9efc23","Body":"null","Content-Type":"application/json; charset=utf-8","Location":"https://management.azure.com/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/providers/Microsoft.Storage/operations/b3cbc3e7-978d-4578-b94f-3df67c9efc23?monitor=true&api-version=2015-05-01-preview"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/providers/Microsoft.Storage/operations/b3cbc3e7-978d-4578-b94f-3df67c9efc23?monitor=true&api-version=2015-05-01-preview"},{"Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14935","StatusCode":"202","x-ms-correlation-request-id":"6b063df9-ddb2-4b2b-a733-583ba1c299d0","Date":"Fri, 21 Aug 2015 22:10:11 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"25","x-ms-routing-request-id":"WESTUS:20150821T221012Z:6b063df9-ddb2-4b2b-a733-583ba1c299d0","Expires":"-1","Content-Length":"4","x-ms-request-id":"53ec2560-d416-4a05-a99f-93c72b837b69","Body":"null","Content-Type":"application/json; charset=utf-8","Location":"https://management.azure.com/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/providers/Microsoft.Storage/operations/b3cbc3e7-978d-4578-b94f-3df67c9efc23?monitor=true&api-version=2015-05-01-preview"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/providers/Microsoft.Storage/operations/b3cbc3e7-978d-4578-b94f-3df67c9efc23?monitor=true&api-version=2015-05-01-preview"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14934","StatusCode":"200","x-ms-correlation-request-id":"8062595e-4113-4a8c-80c4-b38f03f1d0cd","Date":"Fri, 21 Aug 2015 22:10:36 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150821T221037Z:8062595e-4113-4a8c-80c4-b38f03f1d0cd","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"73","x-ms-request-id":"3f55b2bc-5f1e-4bc4-a7c7-5249352a4196","Body":"{\"properties\":{\"accountType\":\"Standard_GRS\"},\"location\":\"Southeast Asia\"}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnroudi/providers/Microsoft.Storage/storageAccounts?api-version=2015-05-01-preview"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14923","StatusCode":"200","x-ms-correlation-request-id":"17f3ffec-957b-4b41-9559-58c0191a4d37","Date":"Fri, 21 Aug 2015 22:10:38 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150821T221038Z:17f3ffec-957b-4b41-9559-58c0191a4d37","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"728","x-ms-request-id":"f7547924-8202-483c-8b75-6c40cbcfcd5d","Body":"{\"value\":[{\"id\":\"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnroudi/providers/Microsoft.Storage/storageAccounts/javatest1sanhahlv\",\"name\":\"javatest1sanhahlv\",\"location\":\"Southeast Asia\",\"type\":\"Microsoft.Storage/storageAccounts\",\"properties\":{\"provisioningState\":\"Succeeded\",\"accountType\":\"Standard_GRS\",\"primaryEndpoints\":{\"blob\":\"https://javatest1sanhahlv.blob.core.windows.net/\",\"queue\":\"https://javatest1sanhahlv.queue.core.windows.net/\",\"table\":\"https://javatest1sanhahlv.table.core.windows.net/\"},\"primaryLocation\":\"Southeast Asia\",\"statusOfPrimary\":\"Available\",\"secondaryLocation\":\"East Asia\",\"statusOfSecondary\":\"Available\",\"creationTime\":\"2015-08-21T22:10:09.4928806Z\"}}],\"nextLink\":\"\"}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnroudi/providers/Microsoft.Network/virtualnetworks/javatest1vnetnnszln?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-ratelimit-remaining-subscription-writes":"1194","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"b108e619-51da-4bc2-bd28-c2cecbdedb90","Date":"Fri, 21 Aug 2015 22:10:41 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"10","x-ms-routing-request-id":"WESTUS:20150821T221042Z:b108e619-51da-4bc2-bd28-c2cecbdedb90","Expires":"-1","Content-Length":"1060","Azure-AsyncOperation":"https://management.azure.com/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/providers/Microsoft.Network/locations/southeastasia/operations/ce71bcb0-d24a-42c4-a3f2-dba3220811ea?api-version=2015-05-01-preview","x-ms-request-id":"ce71bcb0-d24a-42c4-a3f2-dba3220811ea","Body":"{\r\n \"name\": \"javatest1vnetnnszln\",\r\n \"id\": \"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnroudi/providers/Microsoft.Network/virtualNetworks/javatest1vnetnnszln\",\r\n \"etag\": \"W/\\\"b464bb26-3234-4495-b2e8-35c72d75e805\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"d31e6666-3bd4-46ae-a64f-418a5ff7c177\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"javatest1subnnqrmlh\",\r\n \"id\": \"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnroudi/providers/Microsoft.Network/virtualNetworks/javatest1vnetnnszln/subnets/javatest1subnnqrmlh\",\r\n \"etag\": \"W/\\\"b464bb26-3234-4495-b2e8-35c72d75e805\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"x-ms-version":"2015-05-01-preview","User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/providers/Microsoft.Network/locations/southeastasia/operations/ce71bcb0-d24a-42c4-a3f2-dba3220811ea?api-version=2015-05-01-preview"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14982","StatusCode":"200","x-ms-correlation-request-id":"126b09e5-2ed6-4641-b0d3-b5cfaf1715e1","Date":"Fri, 21 Aug 2015 22:10:42 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150821T221043Z:126b09e5-2ed6-4641-b0d3-b5cfaf1715e1","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"29","x-ms-request-id":"ac76bd00-9a2d-4886-a79a-1b9b2de5129d","Body":"{\r\n \"status\": \"Succeeded\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnroudi/providers/Microsoft.Network/virtualnetworks/javatest1vnetnnszln?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14821","StatusCode":"200","x-ms-correlation-request-id":"c08c18bf-bba9-444d-8395-ee033be0c02b","Date":"Fri, 21 Aug 2015 22:10:44 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","ETag":"W/\"760ed0ab-1c2a-4b3c-b88e-1ac937b30a71\"","x-ms-routing-request-id":"WESTUS:20150821T221044Z:c08c18bf-bba9-444d-8395-ee033be0c02b","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1062","x-ms-request-id":"69adda77-8d0b-4c8f-86cd-24b9e8d428e7","Body":"{\r\n \"name\": \"javatest1vnetnnszln\",\r\n \"id\": \"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnroudi/providers/Microsoft.Network/virtualNetworks/javatest1vnetnnszln\",\r\n \"etag\": \"W/\\\"760ed0ab-1c2a-4b3c-b88e-1ac937b30a71\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d31e6666-3bd4-46ae-a64f-418a5ff7c177\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"javatest1subnnqrmlh\",\r\n \"id\": \"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnroudi/providers/Microsoft.Network/virtualNetworks/javatest1vnetnnszln/subnets/javatest1subnnqrmlh\",\r\n \"etag\": \"W/\\\"760ed0ab-1c2a-4b3c-b88e-1ac937b30a71\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnroudi/providers/Microsoft.Network/networkInterfaces/javatest1nicnnjfft?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-ratelimit-remaining-subscription-writes":"1188","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"fca73c21-65cb-42b1-864c-0f2415473465","Date":"Fri, 21 Aug 2015 22:10:48 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150821T221048Z:fca73c21-65cb-42b1-864c-0f2415473465","Expires":"-1","Content-Length":"1311","Azure-AsyncOperation":"https://management.azure.com/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/providers/Microsoft.Network/locations/southeastasia/operations/8d0ceff5-edf6-46fb-a99c-1efd7f75932d?api-version=2015-05-01-preview","x-ms-request-id":"8d0ceff5-edf6-46fb-a99c-1efd7f75932d","Body":"{\r\n \"name\": \"javatest1nicnnjfft\",\r\n \"id\": \"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnroudi/providers/Microsoft.Network/networkInterfaces/javatest1nicnnjfft\",\r\n \"etag\": \"W/\\\"e949fe10-00a1-4927-863e-722088cb007d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fceeddb0-8195-466b-801e-1d51a9870892\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"javatest1ipcnnihyz\",\r\n \"id\": \"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnroudi/providers/Microsoft.Network/networkInterfaces/javatest1nicnnjfft/ipConfigurations/javatest1ipcnnihyz\",\r\n \"etag\": \"W/\\\"e949fe10-00a1-4927-863e-722088cb007d\\\"\",\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/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnroudi/providers/Microsoft.Network/virtualNetworks/javatest1vnetnnszln/subnets/javatest1subnnqrmlh\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"x-ms-version":"2015-05-01-preview","User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/providers/Microsoft.Network/locations/southeastasia/operations/8d0ceff5-edf6-46fb-a99c-1efd7f75932d?api-version=2015-05-01-preview"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14871","StatusCode":"200","x-ms-correlation-request-id":"93bec000-25da-44f5-ad38-1a3ac814fa0d","Date":"Fri, 21 Aug 2015 22:10:49 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150821T221049Z:93bec000-25da-44f5-ad38-1a3ac814fa0d","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"29","x-ms-request-id":"d4c95082-096e-4073-a5ae-3127235f01be","Body":"{\r\n \"status\": \"Succeeded\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnroudi/providers/Microsoft.Network/networkInterfaces/javatest1nicnnjfft?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14820","StatusCode":"200","x-ms-correlation-request-id":"9ea6a8f2-60ac-4262-a94d-8da38d85fcce","Date":"Fri, 21 Aug 2015 22:10:49 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","ETag":"W/\"e949fe10-00a1-4927-863e-722088cb007d\"","x-ms-routing-request-id":"WESTUS:20150821T221050Z:9ea6a8f2-60ac-4262-a94d-8da38d85fcce","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1311","x-ms-request-id":"a419b283-a3b4-42b8-9805-92086705a0ae","Body":"{\r\n \"name\": \"javatest1nicnnjfft\",\r\n \"id\": \"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnroudi/providers/Microsoft.Network/networkInterfaces/javatest1nicnnjfft\",\r\n \"etag\": \"W/\\\"e949fe10-00a1-4927-863e-722088cb007d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fceeddb0-8195-466b-801e-1d51a9870892\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"javatest1ipcnnihyz\",\r\n \"id\": \"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnroudi/providers/Microsoft.Network/networkInterfaces/javatest1nicnnjfft/ipConfigurations/javatest1ipcnnihyz\",\r\n \"etag\": \"W/\\\"e949fe10-00a1-4927-863e-722088cb007d\\\"\",\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/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnroudi/providers/Microsoft.Network/virtualNetworks/javatest1vnetnnszln/subnets/javatest1subnnqrmlh\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnroudi/providers/Microsoft.Compute/availabilitySets/javatest1asnisgrv?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"782ae8e4-f04b-4968-be1b-7a692c6c70c1_130844981924640799","x-ms-ratelimit-remaining-subscription-writes":"1187","Pragma":"no-cache","StatusCode":"200","x-ms-correlation-request-id":"6703ab53-4973-41ed-94b8-65f2afa917d4","Date":"Fri, 21 Aug 2015 22:10:53 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150821T221053Z:6703ab53-4973-41ed-94b8-65f2afa917d4","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"387","x-ms-request-id":"676f52b8-c12c-4a34-917e-2cfff644ea6b","Body":"{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnroudi/providers/Microsoft.Compute/availabilitySets/javatest1asnisgrv\",\r\n \"name\": \"javatest1asnisgrv\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnroudi/providers/Microsoft.Compute/virtualMachines/javatestVMomqgh?api-version=2015-06-15","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"782ae8e4-f04b-4968-be1b-7a692c6c70c1_130844981924640799","x-ms-ratelimit-remaining-subscription-writes":"1186","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"9f243015-d865-4960-9d41-a862f55bdb3b","Date":"Fri, 21 Aug 2015 22:10:56 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150821T221056Z:9f243015-d865-4960-9d41-a862f55bdb3b","Expires":"-1","Content-Length":"2219","Azure-AsyncOperation":"https://management.azure.com/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/providers/Microsoft.Compute/locations/southeastasia/operations/5329bfc3-ac0c-4803-a721-7c69c05ee2a2?api-version=2015-06-15","x-ms-request-id":"5329bfc3-ac0c-4803-a721-7c69c05ee2a2","Body":"{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnroudi/providers/Microsoft.Compute/availabilitySets/JAVATEST1ASNISGRV\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1sanhahlv.blob.core.windows.net/javatest1connzfibq/ososvhd.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 2,\r\n \"name\": \"dataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1sanhahlv.blob.core.windows.net/javatest1connzfibq/dataDisk1.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"dataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1sanhahlv.blob.core.windows.net/javatest1connzfibq/dataDisk2.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"diskSizeGB\": 10\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javatestVMomqgh\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"properties\":{},\"id\":\"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnroudi/providers/Microsoft.Network/networkInterfaces/javatest1nicnnjfft\"}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnroudi/providers/Microsoft.Compute/virtualMachines/javatestVMomqgh\",\r\n \"name\": \"javatestVMomqgh\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/providers/Microsoft.Compute/locations/southeastasia/operations/5329bfc3-ac0c-4803-a721-7c69c05ee2a2?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"782ae8e4-f04b-4968-be1b-7a692c6c70c1_130844981924640799","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14870","StatusCode":"200","x-ms-correlation-request-id":"57346023-bb44-439d-b2be-cae4ead353ba","Date":"Fri, 21 Aug 2015 22:10:57 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150821T221057Z:57346023-bb44-439d-b2be-cae4ead353ba","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"bb78b874-5665-42b5-869c-9454fa426885","Body":"{\r\n \"operationId\": \"5329bfc3-ac0c-4803-a721-7c69c05ee2a2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-21T22:10:55.1669535+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnroudi/providers/Microsoft.Compute/virtualMachines/javatestVMomqgh?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"782ae8e4-f04b-4968-be1b-7a692c6c70c1_130844981924640799","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14869","StatusCode":"200","x-ms-correlation-request-id":"14dd9bc8-3291-4fc2-96ff-37562c406800","Date":"Fri, 21 Aug 2015 22:10:57 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150821T221058Z:14dd9bc8-3291-4fc2-96ff-37562c406800","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"2219","x-ms-request-id":"1a4aa5ed-4476-4023-94da-ad9d32899e05","Body":"{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnroudi/providers/Microsoft.Compute/availabilitySets/JAVATEST1ASNISGRV\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1sanhahlv.blob.core.windows.net/javatest1connzfibq/ososvhd.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 2,\r\n \"name\": \"dataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1sanhahlv.blob.core.windows.net/javatest1connzfibq/dataDisk1.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"dataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1sanhahlv.blob.core.windows.net/javatest1connzfibq/dataDisk2.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"diskSizeGB\": 10\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javatestVMomqgh\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"properties\":{},\"id\":\"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnroudi/providers/Microsoft.Network/networkInterfaces/javatest1nicnnjfft\"}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnroudi/providers/Microsoft.Compute/virtualMachines/javatestVMomqgh\",\r\n \"name\": \"javatestVMomqgh\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnroudi/providers/Microsoft.Compute/virtualMachines/javatestVMomqgh?$expand=instanceView&api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"782ae8e4-f04b-4968-be1b-7a692c6c70c1_130844981924640799","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14868","StatusCode":"200","x-ms-correlation-request-id":"0d064232-7127-4f02-b20b-6181dcb189e1","Date":"Fri, 21 Aug 2015 22:10:57 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150821T221058Z:0d064232-7127-4f02-b20b-6181dcb189e1","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"3801","x-ms-request-id":"c49d23d4-6c3a-494f-ad83-c9acae529608","Body":"{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnroudi/providers/Microsoft.Compute/availabilitySets/JAVATEST1ASNISGRV\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1sanhahlv.blob.core.windows.net/javatest1connzfibq/ososvhd.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 2,\r\n \"name\": \"dataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1sanhahlv.blob.core.windows.net/javatest1connzfibq/dataDisk1.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"dataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1sanhahlv.blob.core.windows.net/javatest1connzfibq/dataDisk2.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"diskSizeGB\": 10\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javatestVMomqgh\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"properties\":{},\"id\":\"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnroudi/providers/Microsoft.Network/networkInterfaces/javatest1nicnnjfft\"}]},\r\n \"provisioningState\": \"Creating\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"Unknown\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n \"level\": \"Warning\",\r\n \"displayStatus\": \"Not Ready\",\r\n \"message\": \"VM status blob is found but not yet populated.\",\r\n \"time\": \"2015-08-21T22:10:57+00:00\"\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"osdisk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2015-08-21T22:10:56.3388337+00:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"dataDisk1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2015-08-21T22:10:56.0420703+00:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"dataDisk2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2015-08-21T22:10:55.9794782+00:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/creating\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Creating\"\r\n }\r\n ]\r\n }\r\n },\r\n \"id\": \"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnroudi/providers/Microsoft.Compute/virtualMachines/javatestVMomqgh\",\r\n \"name\": \"javatestVMomqgh\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"DELETE","Uri":"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnroudi/providers/Microsoft.Compute/virtualMachines/javatestVMomqgh?api-version=2015-06-15","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"782ae8e4-f04b-4968-be1b-7a692c6c70c1_130844981924640799","x-ms-ratelimit-remaining-subscription-writes":"1185","Pragma":"no-cache","StatusCode":"202","x-ms-correlation-request-id":"9123d95d-f6dd-4642-b42e-11d82508f125","Date":"Fri, 21 Aug 2015 22:10:59 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150821T221059Z:9123d95d-f6dd-4642-b42e-11d82508f125","Expires":"-1","Content-Length":"0","Azure-AsyncOperation":"https://management.azure.com/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/providers/Microsoft.Compute/locations/southeastasia/operations/e5aaa1a9-251a-4c8f-af0a-535975551862?api-version=2015-06-15","x-ms-request-id":"e5aaa1a9-251a-4c8f-af0a-535975551862","Body":"","Location":"https://management.azure.com/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/providers/Microsoft.Compute/locations/southeastasia/operations/e5aaa1a9-251a-4c8f-af0a-535975551862?monitor=true&api-version=2015-06-15"}] \ No newline at end of file +[{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/SouthEastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?api-version=2015-06-15&$top=1","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14999","StatusCode":"200","x-ms-correlation-request-id":"8da77449-710c-443f-b0ab-38b5688ff844","Date":"Mon, 19 Oct 2015 19:56:08 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T195608Z:8da77449-710c-443f-b0ab-38b5688ff844","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"313","x-ms-request-id":"d193c74d-495f-45c9-b250-eaead2259535","Body":"[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201506\",\r\n \"id\": \"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201506\"\r\n }\r\n]","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/javatestrgnqxuyv?api-version=2014-04-01-preview","Content-Type":"application/json; charset=utf-8"},{"x-ms-ratelimit-remaining-subscription-writes":"1199","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"daf109e7-6edd-43dd-880e-a44217ab20bb","Date":"Mon, 19 Oct 2015 19:56:11 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T195611Z:daf109e7-6edd-43dd-880e-a44217ab20bb","Expires":"-1","Content-Length":"192","x-ms-request-id":"daf109e7-6edd-43dd-880e-a44217ab20bb","Body":"{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnqxuyv\",\"name\":\"javatestrgnqxuyv\",\"location\":\"southeastasia\",\"properties\":{\"provisioningState\":\"Succeeded\"}}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnqxuyv/providers/Microsoft.Storage/storageAccounts/javatest1sanhldwq?api-version=2015-06-15","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-ratelimit-remaining-subscription-writes":"1198","Pragma":"no-cache","StatusCode":"202","x-ms-correlation-request-id":"a99e20a9-c75f-497a-9fe3-64a24ce34382","Date":"Mon, 19 Oct 2015 19:56:13 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"25","x-ms-routing-request-id":"WESTUS:20151019T195613Z:a99e20a9-c75f-497a-9fe3-64a24ce34382","Expires":"-1","Content-Length":"0","x-ms-request-id":"a99e20a9-c75f-497a-9fe3-64a24ce34382","Body":"","Location":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/operations/be9fe1a7-03b9-479a-8510-fdd2a7399bd6?monitor=true&api-version=2015-06-15"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/operations/be9fe1a7-03b9-479a-8510-fdd2a7399bd6?monitor=true&api-version=2015-06-15"},{"Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14999","StatusCode":"202","x-ms-correlation-request-id":"8a56bbef-d61c-4982-a601-8a3d0c035121","Date":"Mon, 19 Oct 2015 19:56:14 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"25","x-ms-routing-request-id":"WESTUS:20151019T195614Z:8a56bbef-d61c-4982-a601-8a3d0c035121","Expires":"-1","Content-Length":"0","x-ms-request-id":"8a56bbef-d61c-4982-a601-8a3d0c035121","Body":"","Location":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/operations/be9fe1a7-03b9-479a-8510-fdd2a7399bd6?monitor=true&api-version=2015-06-15"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/operations/be9fe1a7-03b9-479a-8510-fdd2a7399bd6?monitor=true&api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14998","StatusCode":"200","x-ms-correlation-request-id":"68be27f9-c693-4ed4-bad8-50f656d32b1f","Date":"Mon, 19 Oct 2015 19:56:38 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T195639Z:68be27f9-c693-4ed4-bad8-50f656d32b1f","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"72","x-ms-request-id":"68be27f9-c693-4ed4-bad8-50f656d32b1f","Body":"{\"location\":\"SouthEastAsia\",\"properties\":{\"accountType\":\"Standard_LRS\"}}","Content-Type":"application/json"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnqxuyv/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14935","StatusCode":"200","x-ms-correlation-request-id":"63ddd99a-8466-4bc8-ab87-3f53bb9d657a","Date":"Mon, 19 Oct 2015 19:56:38 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T195639Z:63ddd99a-8466-4bc8-ab87-3f53bb9d657a","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"717","x-ms-request-id":"63ddd99a-8466-4bc8-ab87-3f53bb9d657a","Body":"{\"value\":[{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnqxuyv/providers/Microsoft.Storage/storageAccounts/javatest1sanhldwq\",\"location\":\"southeastasia\",\"name\":\"javatest1sanhldwq\",\"properties\":{\"accountType\":\"Standard_LRS\",\"creationTime\":\"2015-10-19T19:56:13.2188151Z\",\"primaryEndpoints\":{\"blob\":\"https://javatest1sanhldwq.blob.core.windows.net/\",\"file\":\"https://javatest1sanhldwq.file.core.windows.net/\",\"queue\":\"https://javatest1sanhldwq.queue.core.windows.net/\",\"table\":\"https://javatest1sanhldwq.table.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}]}\n","Content-Type":"application/json"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnqxuyv/providers/Microsoft.Network/virtualnetworks/javatest1vnetnhwtpf?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-ratelimit-remaining-subscription-writes":"1197","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"71aeecda-7cfa-40f3-89e8-435f7fa725fb","Date":"Mon, 19 Oct 2015 19:56:44 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"10","x-ms-routing-request-id":"WESTUS:20151019T195645Z:71aeecda-7cfa-40f3-89e8-435f7fa725fb","Expires":"-1","Content-Length":"1108","Azure-AsyncOperation":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/southeastasia/operations/e8775109-9c3b-4624-b241-d0bc71392137?api-version=2015-05-01-preview","x-ms-request-id":"e8775109-9c3b-4624-b241-d0bc71392137","Body":"{\r\n \"name\": \"javatest1vnetnhwtpf\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnqxuyv/providers/Microsoft.Network/virtualNetworks/javatest1vnetnhwtpf\",\r\n \"etag\": \"W/\\\"2a4acfd0-dbe1-4726-b9e6-03796e4ddf03\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"9eef4a62-33cb-48d9-b0be-ba9ee216a027\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"javatest1subnnkkbqy\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnqxuyv/providers/Microsoft.Network/virtualNetworks/javatest1vnetnhwtpf/subnets/javatest1subnnkkbqy\",\r\n \"etag\": \"W/\\\"2a4acfd0-dbe1-4726-b9e6-03796e4ddf03\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"},{"x-ms-version":"2015-05-01-preview","User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/southeastasia/operations/e8775109-9c3b-4624-b241-d0bc71392137?api-version=2015-05-01-preview"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14998","StatusCode":"200","x-ms-correlation-request-id":"e0d738cd-dedf-434e-98ea-2e3d6a37d00e","Date":"Mon, 19 Oct 2015 19:56:45 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T195646Z:e0d738cd-dedf-434e-98ea-2e3d6a37d00e","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"29","x-ms-request-id":"e6166ad4-b1e5-4d9b-9974-a215883330df","Body":"{\r\n \"status\": \"Succeeded\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnqxuyv/providers/Microsoft.Network/virtualnetworks/javatest1vnetnhwtpf?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14999","StatusCode":"200","x-ms-correlation-request-id":"640bc02a-1b18-4d02-af63-1bd782820004","Date":"Mon, 19 Oct 2015 19:56:47 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","ETag":"W/\"fd1634ec-05db-4ff3-89a6-1513a77353c5\"","x-ms-routing-request-id":"WESTUS:20151019T195647Z:640bc02a-1b18-4d02-af63-1bd782820004","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1110","x-ms-request-id":"3710a1d7-8eec-41fe-9355-b13c0d34d29c","Body":"{\r\n \"name\": \"javatest1vnetnhwtpf\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnqxuyv/providers/Microsoft.Network/virtualNetworks/javatest1vnetnhwtpf\",\r\n \"etag\": \"W/\\\"fd1634ec-05db-4ff3-89a6-1513a77353c5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"9eef4a62-33cb-48d9-b0be-ba9ee216a027\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"javatest1subnnkkbqy\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnqxuyv/providers/Microsoft.Network/virtualNetworks/javatest1vnetnhwtpf/subnets/javatest1subnnkkbqy\",\r\n \"etag\": \"W/\\\"fd1634ec-05db-4ff3-89a6-1513a77353c5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnqxuyv/providers/Microsoft.Network/networkInterfaces/javatest1nicnraacb?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-ratelimit-remaining-subscription-writes":"1197","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"e3f2364c-6d21-443d-a9a5-5a0c4d9a0c5c","Date":"Mon, 19 Oct 2015 19:56:49 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T195650Z:e3f2364c-6d21-443d-a9a5-5a0c4d9a0c5c","Expires":"-1","Content-Length":"1361","Azure-AsyncOperation":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/southeastasia/operations/c42e7a9b-ef9d-4c32-9d0a-84ec47f63d0d?api-version=2015-05-01-preview","x-ms-request-id":"c42e7a9b-ef9d-4c32-9d0a-84ec47f63d0d","Body":"{\r\n \"name\": \"javatest1nicnraacb\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnqxuyv/providers/Microsoft.Network/networkInterfaces/javatest1nicnraacb\",\r\n \"etag\": \"W/\\\"df5bead2-f9ad-4810-9fcd-45d299349b1f\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"290b5d3f-ab0b-4fb7-8873-f35c60b179fd\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"javatest1ipcntexih\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnqxuyv/providers/Microsoft.Network/networkInterfaces/javatest1nicnraacb/ipConfigurations/javatest1ipcntexih\",\r\n \"etag\": \"W/\\\"df5bead2-f9ad-4810-9fcd-45d299349b1f\\\"\",\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/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnqxuyv/providers/Microsoft.Network/virtualNetworks/javatest1vnetnhwtpf/subnets/javatest1subnnkkbqy\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"},{"x-ms-version":"2015-05-01-preview","User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/southeastasia/operations/c42e7a9b-ef9d-4c32-9d0a-84ec47f63d0d?api-version=2015-05-01-preview"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14997","StatusCode":"200","x-ms-correlation-request-id":"a2493d61-722f-454c-9f37-256b53c0c474","Date":"Mon, 19 Oct 2015 19:56:50 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T195651Z:a2493d61-722f-454c-9f37-256b53c0c474","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"29","x-ms-request-id":"54cf3d9e-180c-48cf-81f4-1eb621a2de62","Body":"{\r\n \"status\": \"Succeeded\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnqxuyv/providers/Microsoft.Network/networkInterfaces/javatest1nicnraacb?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14998","StatusCode":"200","x-ms-correlation-request-id":"b04bd3fb-02ca-4f15-8282-be06a006ab42","Date":"Mon, 19 Oct 2015 19:56:52 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","ETag":"W/\"df5bead2-f9ad-4810-9fcd-45d299349b1f\"","x-ms-routing-request-id":"WESTUS:20151019T195652Z:b04bd3fb-02ca-4f15-8282-be06a006ab42","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1361","x-ms-request-id":"68b17d18-2ac3-438c-96bd-e674d31390f9","Body":"{\r\n \"name\": \"javatest1nicnraacb\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnqxuyv/providers/Microsoft.Network/networkInterfaces/javatest1nicnraacb\",\r\n \"etag\": \"W/\\\"df5bead2-f9ad-4810-9fcd-45d299349b1f\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"290b5d3f-ab0b-4fb7-8873-f35c60b179fd\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"javatest1ipcntexih\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnqxuyv/providers/Microsoft.Network/networkInterfaces/javatest1nicnraacb/ipConfigurations/javatest1ipcntexih\",\r\n \"etag\": \"W/\\\"df5bead2-f9ad-4810-9fcd-45d299349b1f\\\"\",\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/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnqxuyv/providers/Microsoft.Network/virtualNetworks/javatest1vnetnhwtpf/subnets/javatest1subnnkkbqy\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnqxuyv/providers/Microsoft.Compute/availabilitySets/javatest1asnvkohu?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","x-ms-ratelimit-remaining-subscription-writes":"1196","Pragma":"no-cache","StatusCode":"200","x-ms-correlation-request-id":"670b9c43-6f9e-4e1a-8b27-2b2bfd76468e","Date":"Mon, 19 Oct 2015 19:56:54 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T195655Z:670b9c43-6f9e-4e1a-8b27-2b2bfd76468e","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"387","x-ms-request-id":"1a56896b-e716-47a5-a0ed-20d9ecdbe167","Body":"{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnqxuyv/providers/Microsoft.Compute/availabilitySets/javatest1asnvkohu\",\r\n \"name\": \"javatest1asnvkohu\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnqxuyv/providers/Microsoft.Compute/virtualMachines/javatestVMzuyiu?api-version=2015-06-15","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","x-ms-ratelimit-remaining-subscription-writes":"1195","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"ba51f2ee-e729-4e3b-8f59-0e8f459f04f0","Date":"Mon, 19 Oct 2015 19:56:58 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T195658Z:ba51f2ee-e729-4e3b-8f59-0e8f459f04f0","Expires":"-1","Content-Length":"2272","Azure-AsyncOperation":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/580b99e1-f28a-4db9-8c5d-a2ce8477f2c4?api-version=2015-06-15","x-ms-request-id":"580b99e1-f28a-4db9-8c5d-a2ce8477f2c4","Body":"{\r\n \"properties\": {\r\n \"vmId\": \"11e0df9c-9330-427c-832e-0dcc2abc5b89\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnqxuyv/providers/Microsoft.Compute/availabilitySets/JAVATEST1ASNVKOHU\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201506\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1sanhldwq.blob.core.windows.net/javatest1connyafbs/ososvhd.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 2,\r\n \"name\": \"dataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1sanhldwq.blob.core.windows.net/javatest1connyafbs/dataDisk1.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"dataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1sanhldwq.blob.core.windows.net/javatest1connyafbs/dataDisk2.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"diskSizeGB\": 10\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javatestVMzuyiu\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"properties\":{},\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnqxuyv/providers/Microsoft.Network/networkInterfaces/javatest1nicnraacb\"}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnqxuyv/providers/Microsoft.Compute/virtualMachines/javatestVMzuyiu\",\r\n \"name\": \"javatestVMzuyiu\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/580b99e1-f28a-4db9-8c5d-a2ce8477f2c4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14997","StatusCode":"200","x-ms-correlation-request-id":"53f495d1-3ddb-436d-9664-04e3b4c2792a","Date":"Mon, 19 Oct 2015 19:56:59 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T195659Z:53f495d1-3ddb-436d-9664-04e3b4c2792a","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"dffb4f77-b0d3-4ccd-a714-2cae0a96a639","Body":"{\r\n \"operationId\": \"580b99e1-f28a-4db9-8c5d-a2ce8477f2c4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T19:56:57.0853897+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnqxuyv/providers/Microsoft.Compute/virtualMachines/javatestVMzuyiu?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14996","StatusCode":"200","x-ms-correlation-request-id":"495d0e73-d856-4804-8310-4e2ce90c23fb","Date":"Mon, 19 Oct 2015 19:56:59 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T195659Z:495d0e73-d856-4804-8310-4e2ce90c23fb","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"2272","x-ms-request-id":"d8134e75-6d96-4d82-9290-1cf03d76f7ea","Body":"{\r\n \"properties\": {\r\n \"vmId\": \"11e0df9c-9330-427c-832e-0dcc2abc5b89\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnqxuyv/providers/Microsoft.Compute/availabilitySets/JAVATEST1ASNVKOHU\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201506\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1sanhldwq.blob.core.windows.net/javatest1connyafbs/ososvhd.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 2,\r\n \"name\": \"dataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1sanhldwq.blob.core.windows.net/javatest1connyafbs/dataDisk1.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"dataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1sanhldwq.blob.core.windows.net/javatest1connyafbs/dataDisk2.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"diskSizeGB\": 10\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javatestVMzuyiu\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"properties\":{},\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnqxuyv/providers/Microsoft.Network/networkInterfaces/javatest1nicnraacb\"}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnqxuyv/providers/Microsoft.Compute/virtualMachines/javatestVMzuyiu\",\r\n \"name\": \"javatestVMzuyiu\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnqxuyv/providers/Microsoft.Compute/virtualMachines/javatestVMzuyiu?$expand=instanceView&api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14995","StatusCode":"200","x-ms-correlation-request-id":"946addd6-bd48-4a0f-83a8-5829fb06bb69","Date":"Mon, 19 Oct 2015 19:56:59 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T195700Z:946addd6-bd48-4a0f-83a8-5829fb06bb69","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"3854","x-ms-request-id":"c2f7cfe4-def2-4e05-988b-b5fa6d253994","Body":"{\r\n \"properties\": {\r\n \"vmId\": \"11e0df9c-9330-427c-832e-0dcc2abc5b89\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnqxuyv/providers/Microsoft.Compute/availabilitySets/JAVATEST1ASNVKOHU\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201506\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1sanhldwq.blob.core.windows.net/javatest1connyafbs/ososvhd.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 2,\r\n \"name\": \"dataDisk1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1sanhldwq.blob.core.windows.net/javatest1connyafbs/dataDisk1.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"dataDisk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1sanhldwq.blob.core.windows.net/javatest1connyafbs/dataDisk2.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"diskSizeGB\": 10\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javatestVMzuyiu\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"properties\":{},\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnqxuyv/providers/Microsoft.Network/networkInterfaces/javatest1nicnraacb\"}]},\r\n \"provisioningState\": \"Creating\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"Unknown\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n \"level\": \"Warning\",\r\n \"displayStatus\": \"Not Ready\",\r\n \"message\": \"VM status blob is found but not yet populated.\",\r\n \"time\": \"2015-10-19T19:56:59+00:00\"\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"osdisk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2015-10-19T19:56:58.4292155+00:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"dataDisk1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2015-10-19T19:56:58.1636266+00:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"dataDisk2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2015-10-19T19:56:58.1010734+00:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/creating\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Creating\"\r\n }\r\n ]\r\n }\r\n },\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnqxuyv/providers/Microsoft.Compute/virtualMachines/javatestVMzuyiu\",\r\n \"name\": \"javatestVMzuyiu\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"DELETE","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnqxuyv/providers/Microsoft.Compute/virtualMachines/javatestVMzuyiu?api-version=2015-06-15","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","x-ms-ratelimit-remaining-subscription-writes":"1194","Pragma":"no-cache","StatusCode":"202","x-ms-correlation-request-id":"d46854e8-3eb5-4e80-8fed-5d4819cb7b10","Date":"Mon, 19 Oct 2015 19:57:00 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T195700Z:d46854e8-3eb5-4e80-8fed-5d4819cb7b10","Expires":"-1","Content-Length":"0","Azure-AsyncOperation":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/50ba2522-85b6-4b59-a494-166d341daa78?api-version=2015-06-15","x-ms-request-id":"50ba2522-85b6-4b59-a494-166d341daa78","Body":"","Location":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/50ba2522-85b6-4b59-a494-166d341daa78?monitor=true&api-version=2015-06-15"}] \ No newline at end of file diff --git a/resource-management/azure-mgmt-utility/src/test/resources/session-records/testVMDiskSizeScenario.json b/resource-management/azure-mgmt-utility/src/test/resources/session-records/testVMDiskSizeScenario.json index 0b8105c3d613..6b3b42640c00 100644 --- a/resource-management/azure-mgmt-utility/src/test/resources/session-records/testVMDiskSizeScenario.json +++ b/resource-management/azure-mgmt-utility/src/test/resources/session-records/testVMDiskSizeScenario.json @@ -1 +1 @@ -[{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/javatestrgnzkafb?api-version=2014-04-01-preview","Content-Type":"application/json; charset=utf-8"},{"x-ms-ratelimit-remaining-subscription-writes":"1199","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"3a837c7a-834c-46d5-a891-51b8e2940017","Date":"Fri, 14 Aug 2015 22:43:16 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T224317Z:3a837c7a-834c-46d5-a891-51b8e2940017","Expires":"-1","Content-Length":"192","x-ms-request-id":"3a837c7a-834c-46d5-a891-51b8e2940017","Body":"{\"id\":\"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnzkafb\",\"name\":\"javatestrgnzkafb\",\"location\":\"southeastasia\",\"properties\":{\"provisioningState\":\"Succeeded\"}}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnzkafb/providers/Microsoft.Storage/storageAccounts/javatest1sancubnj?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-ratelimit-remaining-subscription-writes":"1199","Pragma":"no-cache","StatusCode":"202","x-ms-correlation-request-id":"1b9c39c7-7eed-4f28-a959-cb4cc76eb474","Date":"Fri, 14 Aug 2015 22:43:24 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"25","x-ms-routing-request-id":"WESTUS:20150814T224324Z:1b9c39c7-7eed-4f28-a959-cb4cc76eb474","Expires":"-1","Content-Length":"4","x-ms-request-id":"512be2b6-7517-4710-8290-ada1de6a9bf3","Body":"null","Content-Type":"application/json; charset=utf-8","Location":"https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/512be2b6-7517-4710-8290-ada1de6a9bf3?monitor=true&api-version=2015-05-01-preview"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/512be2b6-7517-4710-8290-ada1de6a9bf3?monitor=true&api-version=2015-05-01-preview"},{"Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14999","StatusCode":"202","x-ms-correlation-request-id":"b353c62c-de7d-462a-9caf-332fce2361cd","Date":"Fri, 14 Aug 2015 22:43:24 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"25","x-ms-routing-request-id":"WESTUS:20150814T224325Z:b353c62c-de7d-462a-9caf-332fce2361cd","Expires":"-1","Content-Length":"4","x-ms-request-id":"8525f3dd-631e-481e-8519-e87b80385a51","Body":"null","Content-Type":"application/json; charset=utf-8","Location":"https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/512be2b6-7517-4710-8290-ada1de6a9bf3?monitor=true&api-version=2015-05-01-preview"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/512be2b6-7517-4710-8290-ada1de6a9bf3?monitor=true&api-version=2015-05-01-preview"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14998","StatusCode":"200","x-ms-correlation-request-id":"0f8baae5-3765-466b-b53c-347c85114884","Date":"Fri, 14 Aug 2015 22:43:49 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T224350Z:0f8baae5-3765-466b-b53c-347c85114884","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"73","x-ms-request-id":"2c879e68-af57-493c-8a2d-d725dd39691e","Body":"{\"properties\":{\"accountType\":\"Standard_GRS\"},\"location\":\"Southeast Asia\"}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnzkafb/providers/Microsoft.Storage/storageAccounts?api-version=2015-05-01-preview"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14999","StatusCode":"200","x-ms-correlation-request-id":"599c0a45-d96e-41ce-acbd-5354cc7ec2c0","Date":"Fri, 14 Aug 2015 22:43:50 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T224350Z:599c0a45-d96e-41ce-acbd-5354cc7ec2c0","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"728","x-ms-request-id":"c8a2d28b-c976-463d-9633-e6844f2de5ba","Body":"{\"value\":[{\"id\":\"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnzkafb/providers/Microsoft.Storage/storageAccounts/javatest1sancubnj\",\"name\":\"javatest1sancubnj\",\"location\":\"Southeast Asia\",\"type\":\"Microsoft.Storage/storageAccounts\",\"properties\":{\"provisioningState\":\"Succeeded\",\"accountType\":\"Standard_GRS\",\"primaryEndpoints\":{\"blob\":\"https://javatest1sancubnj.blob.core.windows.net/\",\"queue\":\"https://javatest1sancubnj.queue.core.windows.net/\",\"table\":\"https://javatest1sancubnj.table.core.windows.net/\"},\"primaryLocation\":\"Southeast Asia\",\"statusOfPrimary\":\"Available\",\"secondaryLocation\":\"East Asia\",\"statusOfSecondary\":\"Available\",\"creationTime\":\"2015-08-14T22:43:21.6264006Z\"}}],\"nextLink\":\"\"}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnzkafb/providers/Microsoft.Network/virtualnetworks/javatest1vnetnlxpyb?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-ratelimit-remaining-subscription-writes":"1198","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"726d0561-7ee9-4f63-ad0c-99e6545bbae1","Date":"Fri, 14 Aug 2015 22:43:53 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"10","x-ms-routing-request-id":"WESTUS:20150814T224354Z:726d0561-7ee9-4f63-ad0c-99e6545bbae1","Expires":"-1","Content-Length":"1045","Azure-AsyncOperation":"https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/2639f5f8-bf37-43c2-b6f7-cfb74c07e0c8?api-version=2015-05-01-preview","x-ms-request-id":"2639f5f8-bf37-43c2-b6f7-cfb74c07e0c8","Body":"{\r\n \"name\": \"javatest1vnetnlxpyb\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnzkafb/providers/Microsoft.Network/virtualNetworks/javatest1vnetnlxpyb\",\r\n \"etag\": \"W/\\\"cfe832c2-5eb7-4c18-9f77-cb084ac7fc2a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"c472ee3c-89c6-4e73-8bdc-524758d6ed39\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"javatest1subnnpantb\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnzkafb/providers/Microsoft.Network/virtualNetworks/javatest1vnetnlxpyb/subnets/javatest1subnnpantb\",\r\n \"etag\": \"W/\\\"cfe832c2-5eb7-4c18-9f77-cb084ac7fc2a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"x-ms-version":"2015-05-01-preview","User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/2639f5f8-bf37-43c2-b6f7-cfb74c07e0c8?api-version=2015-05-01-preview"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14999","StatusCode":"200","x-ms-correlation-request-id":"b5fb0bec-7df8-4e9f-8fd2-02a826b61c06","Date":"Fri, 14 Aug 2015 22:43:54 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T224355Z:b5fb0bec-7df8-4e9f-8fd2-02a826b61c06","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"29","x-ms-request-id":"e6be3681-6681-43b8-b188-5b04b68d8137","Body":"{\r\n \"status\": \"Succeeded\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnzkafb/providers/Microsoft.Network/virtualnetworks/javatest1vnetnlxpyb?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14999","StatusCode":"200","x-ms-correlation-request-id":"5ab3ec6b-5796-471d-bad8-82c54ec5c5f0","Date":"Fri, 14 Aug 2015 22:43:56 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","ETag":"W/\"ba2a3b18-af02-4c86-8887-2f44f0099047\"","x-ms-routing-request-id":"WESTUS:20150814T224356Z:5ab3ec6b-5796-471d-bad8-82c54ec5c5f0","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1047","x-ms-request-id":"3775eb80-1a46-4cf9-a654-1501a6247ba0","Body":"{\r\n \"name\": \"javatest1vnetnlxpyb\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnzkafb/providers/Microsoft.Network/virtualNetworks/javatest1vnetnlxpyb\",\r\n \"etag\": \"W/\\\"ba2a3b18-af02-4c86-8887-2f44f0099047\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c472ee3c-89c6-4e73-8bdc-524758d6ed39\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"javatest1subnnpantb\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnzkafb/providers/Microsoft.Network/virtualNetworks/javatest1vnetnlxpyb/subnets/javatest1subnnpantb\",\r\n \"etag\": \"W/\\\"ba2a3b18-af02-4c86-8887-2f44f0099047\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnzkafb/providers/Microsoft.Network/networkInterfaces/javatest1nicnckbbj?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-ratelimit-remaining-subscription-writes":"1199","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"0778df52-cebf-4e55-a524-57fedfe0b2f7","Date":"Fri, 14 Aug 2015 22:44:02 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T224402Z:0778df52-cebf-4e55-a524-57fedfe0b2f7","Expires":"-1","Content-Length":"1234","Azure-AsyncOperation":"https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/897d5b89-cc15-4a2a-8299-3a4591ee6abb?api-version=2015-05-01-preview","x-ms-request-id":"897d5b89-cc15-4a2a-8299-3a4591ee6abb","Body":"{\r\n \"name\": \"javatest1nicnckbbj\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnzkafb/providers/Microsoft.Network/networkInterfaces/javatest1nicnckbbj\",\r\n \"etag\": \"W/\\\"4b11e9a4-b7d7-4716-908c-ec5254c5035b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"05415839-c48f-4cb7-8a99-b1d5463e2ebc\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"javatest1ipcnugrhy\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnzkafb/providers/Microsoft.Network/networkInterfaces/javatest1nicnckbbj/ipConfigurations/javatest1ipcnugrhy\",\r\n \"etag\": \"W/\\\"4b11e9a4-b7d7-4716-908c-ec5254c5035b\\\"\",\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnzkafb/providers/Microsoft.Network/virtualNetworks/javatest1vnetnlxpyb/subnets/javatest1subnnpantb\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"x-ms-version":"2015-05-01-preview","User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/897d5b89-cc15-4a2a-8299-3a4591ee6abb?api-version=2015-05-01-preview"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14999","StatusCode":"200","x-ms-correlation-request-id":"b3a8f607-74ce-4bbf-a172-3fa5e1194b10","Date":"Fri, 14 Aug 2015 22:44:03 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T224403Z:b3a8f607-74ce-4bbf-a172-3fa5e1194b10","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"29","x-ms-request-id":"95c453fe-8531-48fc-93af-2faab46f42f2","Body":"{\r\n \"status\": \"Succeeded\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnzkafb/providers/Microsoft.Network/networkInterfaces/javatest1nicnckbbj?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14998","StatusCode":"200","x-ms-correlation-request-id":"565b4b7a-ab83-46c1-9637-fc8dd666535e","Date":"Fri, 14 Aug 2015 22:44:03 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","ETag":"W/\"4b11e9a4-b7d7-4716-908c-ec5254c5035b\"","x-ms-routing-request-id":"WESTUS:20150814T224404Z:565b4b7a-ab83-46c1-9637-fc8dd666535e","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1234","x-ms-request-id":"24550f36-0f86-4ca3-afec-9b705052597c","Body":"{\r\n \"name\": \"javatest1nicnckbbj\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnzkafb/providers/Microsoft.Network/networkInterfaces/javatest1nicnckbbj\",\r\n \"etag\": \"W/\\\"4b11e9a4-b7d7-4716-908c-ec5254c5035b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"05415839-c48f-4cb7-8a99-b1d5463e2ebc\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"javatest1ipcnugrhy\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnzkafb/providers/Microsoft.Network/networkInterfaces/javatest1nicnckbbj/ipConfigurations/javatest1ipcnugrhy\",\r\n \"etag\": \"W/\\\"4b11e9a4-b7d7-4716-908c-ec5254c5035b\\\"\",\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnzkafb/providers/Microsoft.Network/virtualNetworks/javatest1vnetnlxpyb/subnets/javatest1subnnpantb\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnzkafb/providers/Microsoft.Compute/availabilitySets/javatest1asnwaggt?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130834748847794074","x-ms-ratelimit-remaining-subscription-writes":"1199","Pragma":"no-cache","StatusCode":"200","x-ms-correlation-request-id":"30e60767-434f-404d-b3fd-86c9314d911d","Date":"Fri, 14 Aug 2015 22:44:10 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T224410Z:30e60767-434f-404d-b3fd-86c9314d911d","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"387","x-ms-request-id":"8811bd29-7704-4c38-bffe-977318d75e97","Body":"{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnzkafb/providers/Microsoft.Compute/availabilitySets/javatest1asnwaggt\",\r\n \"name\": \"javatest1asnwaggt\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnzkafb/providers/Microsoft.Compute/virtualMachines/javatestVMenoqm?api-version=2015-06-15","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130834748847794074","x-ms-ratelimit-remaining-subscription-writes":"1198","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"d3e5e8b8-dd09-4a14-806d-902af97bf938","Date":"Fri, 14 Aug 2015 22:44:13 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T224413Z:d3e5e8b8-dd09-4a14-806d-902af97bf938","Expires":"-1","Content-Length":"1615","Azure-AsyncOperation":"https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/4a1f17e5-1945-461c-930e-fb2958f5f6c7?api-version=2015-06-15","x-ms-request-id":"4a1f17e5-1945-461c-930e-fb2958f5f6c7","Body":"{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnzkafb/providers/Microsoft.Compute/availabilitySets/JAVATEST1ASNWAGGT\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1sancubnj.blob.core.windows.net/javatest1connxyqyw/ososvhd.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"diskSizeGB\": 100\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javatestVMenoqm\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"properties\":{},\"id\":\"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnzkafb/providers/Microsoft.Network/networkInterfaces/javatest1nicnckbbj\"}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnzkafb/providers/Microsoft.Compute/virtualMachines/javatestVMenoqm\",\r\n \"name\": \"javatestVMenoqm\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/4a1f17e5-1945-461c-930e-fb2958f5f6c7?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130834748847794074","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14998","StatusCode":"200","x-ms-correlation-request-id":"4da4d97b-d6d3-42ec-b947-53da3becf41d","Date":"Fri, 14 Aug 2015 22:44:14 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T224414Z:4da4d97b-d6d3-42ec-b947-53da3becf41d","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"339","x-ms-request-id":"b011624c-3bb3-4d35-a8bb-b02d2d09f1cd","Body":"{\r\n \"operationId\": \"4a1f17e5-1945-461c-930e-fb2958f5f6c7\",\r\n \"status\": \"Failed\",\r\n \"startTime\": \"2015-08-14T22:44:12.1868574+00:00\",\r\n \"endTime\": \"2015-08-14T22:44:13.4681831+00:00\",\r\n \"error\": {\r\n \"code\": \"ResizeDiskError\",\r\n \"message\": \"Shrinking a disk from 136367309312 bytes to 107374182912 bytes is not supported.\"\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnzkafb/providers/Microsoft.Compute/virtualMachines/javatestVMenoqm?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130834748847794074","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14997","StatusCode":"200","x-ms-correlation-request-id":"10aff29d-571a-478b-9e84-b8e3fd3ae4de","Date":"Fri, 14 Aug 2015 22:44:14 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T224414Z:10aff29d-571a-478b-9e84-b8e3fd3ae4de","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1613","x-ms-request-id":"495120dd-17d9-4aa7-942b-c6c257269b37","Body":"{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnzkafb/providers/Microsoft.Compute/availabilitySets/JAVATEST1ASNWAGGT\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1sancubnj.blob.core.windows.net/javatest1connxyqyw/ososvhd.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"diskSizeGB\": 100\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javatestVMenoqm\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"properties\":{},\"id\":\"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnzkafb/providers/Microsoft.Network/networkInterfaces/javatest1nicnckbbj\"}]},\r\n \"provisioningState\": \"Failed\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnzkafb/providers/Microsoft.Compute/virtualMachines/javatestVMenoqm\",\r\n \"name\": \"javatestVMenoqm\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnzkafb/providers/Microsoft.Compute/virtualMachines/javatestVMenoqm?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130834748847794074","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14996","StatusCode":"200","x-ms-correlation-request-id":"c761abb7-d821-48e1-b12e-083c44b0b9c1","Date":"Fri, 14 Aug 2015 22:44:14 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T224415Z:c761abb7-d821-48e1-b12e-083c44b0b9c1","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1613","x-ms-request-id":"e3e8102d-2fe7-4932-9938-8eeb0095938a","Body":"{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnzkafb/providers/Microsoft.Compute/availabilitySets/JAVATEST1ASNWAGGT\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1sancubnj.blob.core.windows.net/javatest1connxyqyw/ososvhd.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"diskSizeGB\": 100\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javatestVMenoqm\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"properties\":{},\"id\":\"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnzkafb/providers/Microsoft.Network/networkInterfaces/javatest1nicnckbbj\"}]},\r\n \"provisioningState\": \"Failed\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnzkafb/providers/Microsoft.Compute/virtualMachines/javatestVMenoqm\",\r\n \"name\": \"javatestVMenoqm\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"}] \ No newline at end of file +[{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/javatestrgnvtezh?api-version=2014-04-01-preview","Content-Type":"application/json; charset=utf-8"},{"x-ms-ratelimit-remaining-subscription-writes":"1198","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"0c3044a4-819b-414a-ab15-f35b44f65f76","Date":"Mon, 19 Oct 2015 19:57:05 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T195706Z:0c3044a4-819b-414a-ab15-f35b44f65f76","Expires":"-1","Content-Length":"192","x-ms-request-id":"0c3044a4-819b-414a-ab15-f35b44f65f76","Body":"{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnvtezh\",\"name\":\"javatestrgnvtezh\",\"location\":\"southeastasia\",\"properties\":{\"provisioningState\":\"Succeeded\"}}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnvtezh/providers/Microsoft.Storage/storageAccounts/javatest1sanvtvao?api-version=2015-06-15","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-ratelimit-remaining-subscription-writes":"1196","Pragma":"no-cache","StatusCode":"202","x-ms-correlation-request-id":"2e54c296-1fee-4004-940d-bd21dffd238e","Date":"Mon, 19 Oct 2015 19:57:07 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"25","x-ms-routing-request-id":"WESTUS:20151019T195708Z:2e54c296-1fee-4004-940d-bd21dffd238e","Expires":"-1","Content-Length":"0","x-ms-request-id":"2e54c296-1fee-4004-940d-bd21dffd238e","Body":"","Location":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/operations/7aa973ad-5865-4524-90ca-4667b10e35ff?monitor=true&api-version=2015-06-15"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/operations/7aa973ad-5865-4524-90ca-4667b10e35ff?monitor=true&api-version=2015-06-15"},{"Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14996","StatusCode":"202","x-ms-correlation-request-id":"a43398c2-3bd8-4c8a-835e-96d9252e5e09","Date":"Mon, 19 Oct 2015 19:57:07 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"25","x-ms-routing-request-id":"WESTUS:20151019T195708Z:a43398c2-3bd8-4c8a-835e-96d9252e5e09","Expires":"-1","Content-Length":"0","x-ms-request-id":"a43398c2-3bd8-4c8a-835e-96d9252e5e09","Body":"","Location":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/operations/7aa973ad-5865-4524-90ca-4667b10e35ff?monitor=true&api-version=2015-06-15"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/operations/7aa973ad-5865-4524-90ca-4667b10e35ff?monitor=true&api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14995","StatusCode":"200","x-ms-correlation-request-id":"2b2f7238-526e-4130-8e13-7935aba32d5b","Date":"Mon, 19 Oct 2015 19:57:32 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T195733Z:2b2f7238-526e-4130-8e13-7935aba32d5b","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"72","x-ms-request-id":"2b2f7238-526e-4130-8e13-7935aba32d5b","Body":"{\"location\":\"SouthEastAsia\",\"properties\":{\"accountType\":\"Standard_LRS\"}}","Content-Type":"application/json"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnvtezh/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14994","StatusCode":"200","x-ms-correlation-request-id":"82ed0c68-e133-4cb7-bcfc-c649990b92f6","Date":"Mon, 19 Oct 2015 19:57:33 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T195733Z:82ed0c68-e133-4cb7-bcfc-c649990b92f6","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"717","x-ms-request-id":"82ed0c68-e133-4cb7-bcfc-c649990b92f6","Body":"{\"value\":[{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnvtezh/providers/Microsoft.Storage/storageAccounts/javatest1sanvtvao\",\"location\":\"southeastasia\",\"name\":\"javatest1sanvtvao\",\"properties\":{\"accountType\":\"Standard_LRS\",\"creationTime\":\"2015-10-19T19:57:07.5049261Z\",\"primaryEndpoints\":{\"blob\":\"https://javatest1sanvtvao.blob.core.windows.net/\",\"file\":\"https://javatest1sanvtvao.file.core.windows.net/\",\"queue\":\"https://javatest1sanvtvao.queue.core.windows.net/\",\"table\":\"https://javatest1sanvtvao.table.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}]}\n","Content-Type":"application/json"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnvtezh/providers/Microsoft.Network/virtualnetworks/javatest1vnetnyyqej?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-ratelimit-remaining-subscription-writes":"1195","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"641e2b82-c91f-41d2-a190-c7125433070d","Date":"Mon, 19 Oct 2015 19:57:37 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"10","x-ms-routing-request-id":"WESTUS:20151019T195737Z:641e2b82-c91f-41d2-a190-c7125433070d","Expires":"-1","Content-Length":"1108","Azure-AsyncOperation":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/southeastasia/operations/b01c29f2-c6a0-4a59-b521-46666df8c570?api-version=2015-05-01-preview","x-ms-request-id":"b01c29f2-c6a0-4a59-b521-46666df8c570","Body":"{\r\n \"name\": \"javatest1vnetnyyqej\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnvtezh/providers/Microsoft.Network/virtualNetworks/javatest1vnetnyyqej\",\r\n \"etag\": \"W/\\\"0e7c4e61-6205-4eaf-b96e-bf3f0962d161\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"67f9ff05-d8ef-440d-8701-08eeb21cbc0c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"javatest1subnnkxpjs\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnvtezh/providers/Microsoft.Network/virtualNetworks/javatest1vnetnyyqej/subnets/javatest1subnnkxpjs\",\r\n \"etag\": \"W/\\\"0e7c4e61-6205-4eaf-b96e-bf3f0962d161\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"},{"x-ms-version":"2015-05-01-preview","User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/southeastasia/operations/b01c29f2-c6a0-4a59-b521-46666df8c570?api-version=2015-05-01-preview"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14999","StatusCode":"200","x-ms-correlation-request-id":"cd406fdd-4d47-4ecf-913c-b303456933d2","Date":"Mon, 19 Oct 2015 19:57:38 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T195738Z:cd406fdd-4d47-4ecf-913c-b303456933d2","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"29","x-ms-request-id":"e547b564-62b4-4501-997d-49284b7fdb41","Body":"{\r\n \"status\": \"Succeeded\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnvtezh/providers/Microsoft.Network/virtualnetworks/javatest1vnetnyyqej?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14993","StatusCode":"200","x-ms-correlation-request-id":"818cd3c5-e410-4e1d-9a80-6664e284d6de","Date":"Mon, 19 Oct 2015 19:57:39 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","ETag":"W/\"448cf811-bf77-4718-894b-4ab12889208d\"","x-ms-routing-request-id":"WESTUS:20151019T195739Z:818cd3c5-e410-4e1d-9a80-6664e284d6de","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1110","x-ms-request-id":"6dc1b80f-ce30-42c5-9d8e-0d47a545733c","Body":"{\r\n \"name\": \"javatest1vnetnyyqej\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnvtezh/providers/Microsoft.Network/virtualNetworks/javatest1vnetnyyqej\",\r\n \"etag\": \"W/\\\"448cf811-bf77-4718-894b-4ab12889208d\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"67f9ff05-d8ef-440d-8701-08eeb21cbc0c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"javatest1subnnkxpjs\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnvtezh/providers/Microsoft.Network/virtualNetworks/javatest1vnetnyyqej/subnets/javatest1subnnkxpjs\",\r\n \"etag\": \"W/\\\"448cf811-bf77-4718-894b-4ab12889208d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnvtezh/providers/Microsoft.Network/networkInterfaces/javatest1nicnszvzi?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-ratelimit-remaining-subscription-writes":"1196","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"71dca75f-29e8-4f0b-b976-3104c1295f58","Date":"Mon, 19 Oct 2015 19:57:41 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T195742Z:71dca75f-29e8-4f0b-b976-3104c1295f58","Expires":"-1","Content-Length":"1361","Azure-AsyncOperation":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/southeastasia/operations/eb1f59e3-d39f-4475-99f0-71e4dece3df4?api-version=2015-05-01-preview","x-ms-request-id":"eb1f59e3-d39f-4475-99f0-71e4dece3df4","Body":"{\r\n \"name\": \"javatest1nicnszvzi\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnvtezh/providers/Microsoft.Network/networkInterfaces/javatest1nicnszvzi\",\r\n \"etag\": \"W/\\\"c0142b2d-4d60-4967-be9e-44ba8b7a6a0f\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"9b1e0bde-eb6c-4431-8040-2811861696e7\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"javatest1ipcnyxspu\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnvtezh/providers/Microsoft.Network/networkInterfaces/javatest1nicnszvzi/ipConfigurations/javatest1ipcnyxspu\",\r\n \"etag\": \"W/\\\"c0142b2d-4d60-4967-be9e-44ba8b7a6a0f\\\"\",\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/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnvtezh/providers/Microsoft.Network/virtualNetworks/javatest1vnetnyyqej/subnets/javatest1subnnkxpjs\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"},{"x-ms-version":"2015-05-01-preview","User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/southeastasia/operations/eb1f59e3-d39f-4475-99f0-71e4dece3df4?api-version=2015-05-01-preview"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14999","StatusCode":"200","x-ms-correlation-request-id":"1d6311da-c340-471a-b79b-64b843df2047","Date":"Mon, 19 Oct 2015 19:57:42 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T195743Z:1d6311da-c340-471a-b79b-64b843df2047","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"29","x-ms-request-id":"368a70a5-8fc0-496b-bc5e-ef2f4c1f1244","Body":"{\r\n \"status\": \"Succeeded\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnvtezh/providers/Microsoft.Network/networkInterfaces/javatest1nicnszvzi?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14992","StatusCode":"200","x-ms-correlation-request-id":"72b1a57e-b647-46c1-a9f3-5920c248c6e6","Date":"Mon, 19 Oct 2015 19:57:43 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","ETag":"W/\"c0142b2d-4d60-4967-be9e-44ba8b7a6a0f\"","x-ms-routing-request-id":"WESTUS:20151019T195744Z:72b1a57e-b647-46c1-a9f3-5920c248c6e6","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1361","x-ms-request-id":"b29c148d-a653-4960-8a6f-b447bcd8826b","Body":"{\r\n \"name\": \"javatest1nicnszvzi\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnvtezh/providers/Microsoft.Network/networkInterfaces/javatest1nicnszvzi\",\r\n \"etag\": \"W/\\\"c0142b2d-4d60-4967-be9e-44ba8b7a6a0f\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"9b1e0bde-eb6c-4431-8040-2811861696e7\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"javatest1ipcnyxspu\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnvtezh/providers/Microsoft.Network/networkInterfaces/javatest1nicnszvzi/ipConfigurations/javatest1ipcnyxspu\",\r\n \"etag\": \"W/\\\"c0142b2d-4d60-4967-be9e-44ba8b7a6a0f\\\"\",\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/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnvtezh/providers/Microsoft.Network/virtualNetworks/javatest1vnetnyyqej/subnets/javatest1subnnkxpjs\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnvtezh/providers/Microsoft.Compute/availabilitySets/javatest1asnmxjmt?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","x-ms-ratelimit-remaining-subscription-writes":"1195","Pragma":"no-cache","StatusCode":"200","x-ms-correlation-request-id":"df199893-ff3b-4a35-ad44-34335c641a39","Date":"Mon, 19 Oct 2015 19:57:47 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T195748Z:df199893-ff3b-4a35-ad44-34335c641a39","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"387","x-ms-request-id":"938875e2-293b-4865-8a4c-96ad411c1834","Body":"{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnvtezh/providers/Microsoft.Compute/availabilitySets/javatest1asnmxjmt\",\r\n \"name\": \"javatest1asnmxjmt\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnvtezh/providers/Microsoft.Compute/virtualMachines/javatestVMrwrqb?api-version=2015-06-15","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","x-ms-ratelimit-remaining-subscription-writes":"1194","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"4600ea02-97fa-40ae-a413-594c0ed96428","Date":"Mon, 19 Oct 2015 19:57:50 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T195751Z:4600ea02-97fa-40ae-a413-594c0ed96428","Expires":"-1","Content-Length":"1668","Azure-AsyncOperation":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/a9e0e765-ad44-4599-a593-46a2deeb9b1e?api-version=2015-06-15","x-ms-request-id":"a9e0e765-ad44-4599-a593-46a2deeb9b1e","Body":"{\r\n \"properties\": {\r\n \"vmId\": \"3c7fc96c-8be9-4fe1-b32c-641af5b78905\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnvtezh/providers/Microsoft.Compute/availabilitySets/JAVATEST1ASNMXJMT\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1sanvtvao.blob.core.windows.net/javatest1conncvjxb/ososvhd.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"diskSizeGB\": 100\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javatestVMrwrqb\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"properties\":{},\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnvtezh/providers/Microsoft.Network/networkInterfaces/javatest1nicnszvzi\"}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnvtezh/providers/Microsoft.Compute/virtualMachines/javatestVMrwrqb\",\r\n \"name\": \"javatestVMrwrqb\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/a9e0e765-ad44-4599-a593-46a2deeb9b1e?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14991","StatusCode":"200","x-ms-correlation-request-id":"076a38fa-9127-4b72-8aaf-6dc15b007644","Date":"Mon, 19 Oct 2015 19:57:51 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T195752Z:076a38fa-9127-4b72-8aaf-6dc15b007644","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"339","x-ms-request-id":"ce85936b-c636-4ebf-b7de-a765c819ebd7","Body":"{\r\n \"operationId\": \"a9e0e765-ad44-4599-a593-46a2deeb9b1e\",\r\n \"status\": \"Failed\",\r\n \"startTime\": \"2015-10-19T19:57:50.0542165+00:00\",\r\n \"endTime\": \"2015-10-19T19:57:51.4604474+00:00\",\r\n \"error\": {\r\n \"code\": \"ResizeDiskError\",\r\n \"message\": \"Shrinking a disk from 136367309312 bytes to 107374182912 bytes is not supported.\"\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnvtezh/providers/Microsoft.Compute/virtualMachines/javatestVMrwrqb?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14990","StatusCode":"200","x-ms-correlation-request-id":"b3845e6a-4049-4adb-bb10-1f40923c87e0","Date":"Mon, 19 Oct 2015 19:57:52 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T195753Z:b3845e6a-4049-4adb-bb10-1f40923c87e0","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1666","x-ms-request-id":"5366786d-87b9-43b9-b3e7-4e2f4e120126","Body":"{\r\n \"properties\": {\r\n \"vmId\": \"3c7fc96c-8be9-4fe1-b32c-641af5b78905\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnvtezh/providers/Microsoft.Compute/availabilitySets/JAVATEST1ASNMXJMT\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1sanvtvao.blob.core.windows.net/javatest1conncvjxb/ososvhd.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"diskSizeGB\": 100\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javatestVMrwrqb\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"properties\":{},\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnvtezh/providers/Microsoft.Network/networkInterfaces/javatest1nicnszvzi\"}]},\r\n \"provisioningState\": \"Failed\"\r\n },\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnvtezh/providers/Microsoft.Compute/virtualMachines/javatestVMrwrqb\",\r\n \"name\": \"javatestVMrwrqb\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnvtezh/providers/Microsoft.Compute/virtualMachines/javatestVMrwrqb?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14989","StatusCode":"200","x-ms-correlation-request-id":"dcc8ece3-b077-4055-8d7f-de956b29076b","Date":"Mon, 19 Oct 2015 19:57:52 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T195753Z:dcc8ece3-b077-4055-8d7f-de956b29076b","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1666","x-ms-request-id":"13b389b9-4fc0-468e-8fea-1a77dee5dd8a","Body":"{\r\n \"properties\": {\r\n \"vmId\": \"3c7fc96c-8be9-4fe1-b32c-641af5b78905\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnvtezh/providers/Microsoft.Compute/availabilitySets/JAVATEST1ASNMXJMT\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1sanvtvao.blob.core.windows.net/javatest1conncvjxb/ososvhd.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"diskSizeGB\": 100\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javatestVMrwrqb\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"properties\":{},\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnvtezh/providers/Microsoft.Network/networkInterfaces/javatest1nicnszvzi\"}]},\r\n \"provisioningState\": \"Failed\"\r\n },\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnvtezh/providers/Microsoft.Compute/virtualMachines/javatestVMrwrqb\",\r\n \"name\": \"javatestVMrwrqb\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"}] \ No newline at end of file diff --git a/resource-management/azure-mgmt-utility/src/test/resources/session-records/testVMImageGet.json b/resource-management/azure-mgmt-utility/src/test/resources/session-records/testVMImageGet.json index 9ec937521209..7c3ff22025b9 100644 --- a/resource-management/azure-mgmt-utility/src/test/resources/session-records/testVMImageGet.json +++ b/resource-management/azure-mgmt-utility/src/test/resources/session-records/testVMImageGet.json @@ -1 +1 @@ -[{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/SouthEastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?api-version=2015-06-15&$top=1","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14990","StatusCode":"200","x-ms-correlation-request-id":"24dd9c29-2a12-4cfb-a3d2-9ccca698cc55","Date":"Fri, 14 Aug 2015 22:44:29 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T224429Z:24dd9c29-2a12-4cfb-a3d2-9ccca698cc55","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"313","x-ms-request-id":"9f182ce8-0be3-49d7-8efb-093cfe3ef5c3","Body":"[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201505\"\r\n }\r\n]","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/SouthEastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions/4.0.201505?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14989","StatusCode":"200","x-ms-correlation-request-id":"c6ba9705-b464-463f-b584-d716f5310d2d","Date":"Fri, 14 Aug 2015 22:44:30 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T224430Z:c6ba9705-b464-463f-b584-d716f5310d2d","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"414","x-ms-request-id":"dd788f14-7fad-4430-a33a-c7d42b4b1bf1","Body":"{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201505\"\r\n}","Content-Type":"application/json; charset=utf-8"}] \ No newline at end of file +[{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/SouthEastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?api-version=2015-06-15&$top=1","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14994","StatusCode":"200","x-ms-correlation-request-id":"dad5528a-7a83-46df-8c2e-fd400425716e","Date":"Mon, 19 Oct 2015 20:01:11 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200112Z:dad5528a-7a83-46df-8c2e-fd400425716e","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"313","x-ms-request-id":"8b087820-d237-4ea0-86c3-3ae5042864e4","Body":"[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201506\",\r\n \"id\": \"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201506\"\r\n }\r\n]","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/SouthEastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions/4.0.201506?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14993","StatusCode":"200","x-ms-correlation-request-id":"2c97cb9f-949c-4ffb-90eb-20f3ddd9ee74","Date":"Mon, 19 Oct 2015 20:01:12 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200113Z:2c97cb9f-949c-4ffb-90eb-20f3ddd9ee74","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"414","x-ms-request-id":"a73999ac-5837-4ed6-8e64-4e278346f3e7","Body":"{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201506\",\r\n \"id\": \"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201506\"\r\n}","Content-Type":"application/json; charset=utf-8"}] \ No newline at end of file diff --git a/resource-management/azure-mgmt-utility/src/test/resources/session-records/testVMImageListNoFilter.json b/resource-management/azure-mgmt-utility/src/test/resources/session-records/testVMImageListNoFilter.json index 6e63a5e9b9eb..2cb276eb7832 100644 --- a/resource-management/azure-mgmt-utility/src/test/resources/session-records/testVMImageListNoFilter.json +++ b/resource-management/azure-mgmt-utility/src/test/resources/session-records/testVMImageListNoFilter.json @@ -1 +1 @@ -[{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/SouthEastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?api-version=2015-06-15&$top=1","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14995","StatusCode":"200","x-ms-correlation-request-id":"910ed16c-204e-4e86-a402-a7fbc00b25ea","Date":"Fri, 14 Aug 2015 22:44:30 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T224431Z:910ed16c-204e-4e86-a402-a7fbc00b25ea","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"313","x-ms-request-id":"0bd73fb9-0f96-4e07-88d8-7b5239545b5d","Body":"[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201505\"\r\n }\r\n]","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/SouthEastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14994","StatusCode":"200","x-ms-correlation-request-id":"336ebe5d-c3dd-4156-825e-97d8da1081a4","Date":"Fri, 14 Aug 2015 22:44:31 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T224431Z:336ebe5d-c3dd-4156-825e-97d8da1081a4","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"937","x-ms-request-id":"e65bd32e-4bd7-4a45-82d2-d85949420756","Body":"[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201505\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201506\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201506\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.20150726\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.20150726\"\r\n }\r\n]","Content-Type":"application/json; charset=utf-8"}] \ No newline at end of file +[{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/SouthEastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?api-version=2015-06-15&$top=1","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14993","StatusCode":"200","x-ms-correlation-request-id":"c123ab39-69d3-47bf-bf8e-ec2dd2085ba4","Date":"Mon, 19 Oct 2015 20:01:13 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200114Z:c123ab39-69d3-47bf-bf8e-ec2dd2085ba4","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"313","x-ms-request-id":"19164bb1-b854-4256-908e-becd29a015dd","Body":"[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201506\",\r\n \"id\": \"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201506\"\r\n }\r\n]","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/SouthEastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14992","StatusCode":"200","x-ms-correlation-request-id":"2b2679f4-b662-45c6-8ba8-2b5ded9961f8","Date":"Mon, 19 Oct 2015 20:01:14 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200114Z:2b2679f4-b662-45c6-8ba8-2b5ded9961f8","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1255","x-ms-request-id":"ecb8bb8d-aa48-4fca-84bc-832df94d6361","Body":"[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201506\",\r\n \"id\": \"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201506\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.20150726\",\r\n \"id\": \"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.20150726\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.20150825\",\r\n \"id\": \"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.20150825\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.20150916\",\r\n \"id\": \"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.20150916\"\r\n }\r\n]","Content-Type":"application/json; charset=utf-8"}] \ No newline at end of file diff --git a/resource-management/azure-mgmt-utility/src/test/resources/session-records/testVMImageListOffers.json b/resource-management/azure-mgmt-utility/src/test/resources/session-records/testVMImageListOffers.json index 439824b08de9..339200e5bdca 100644 --- a/resource-management/azure-mgmt-utility/src/test/resources/session-records/testVMImageListOffers.json +++ b/resource-management/azure-mgmt-utility/src/test/resources/session-records/testVMImageListOffers.json @@ -1 +1 @@ -[{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/SouthEastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?api-version=2015-06-15&$top=1","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14993","StatusCode":"200","x-ms-correlation-request-id":"575dcea2-d670-49de-a2b7-929c7e0290e0","Date":"Fri, 14 Aug 2015 22:44:32 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T224432Z:575dcea2-d670-49de-a2b7-929c7e0290e0","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"313","x-ms-request-id":"c7a59867-3a88-475f-9b91-d7776147cb69","Body":"[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201505\"\r\n }\r\n]","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/SouthEastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14992","StatusCode":"200","x-ms-correlation-request-id":"ea463ff5-c579-4c95-b7ea-94208129f260","Date":"Fri, 14 Aug 2015 22:44:33 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T224433Z:ea463ff5-c579-4c95-b7ea-94208129f260","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"272","x-ms-request-id":"405dd763-394c-4b85-ba5f-f7f422868417","Body":"[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"WindowsServer\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer\"\r\n }\r\n]","Content-Type":"application/json; charset=utf-8"}] \ No newline at end of file +[{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/SouthEastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?api-version=2015-06-15&$top=1","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14977","StatusCode":"200","x-ms-correlation-request-id":"479ae96b-582b-4936-aba8-365fa10dd6d2","Date":"Mon, 19 Oct 2015 20:01:15 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200115Z:479ae96b-582b-4936-aba8-365fa10dd6d2","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"313","x-ms-request-id":"c6b347a2-1759-4b05-be6c-c14542700996","Body":"[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201506\",\r\n \"id\": \"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201506\"\r\n }\r\n]","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/SouthEastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14976","StatusCode":"200","x-ms-correlation-request-id":"dfae88eb-428a-41d5-9dd4-9f49f7ba9460","Date":"Mon, 19 Oct 2015 20:01:16 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200116Z:dfae88eb-428a-41d5-9dd4-9f49f7ba9460","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"272","x-ms-request-id":"55a5ea8d-7776-4233-a808-2a5d2de094f3","Body":"[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"WindowsServer\",\r\n \"id\": \"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer\"\r\n }\r\n]","Content-Type":"application/json; charset=utf-8"}] \ No newline at end of file diff --git a/resource-management/azure-mgmt-utility/src/test/resources/session-records/testVMImageListPublisher.json b/resource-management/azure-mgmt-utility/src/test/resources/session-records/testVMImageListPublisher.json index 537d97836620..36983384c180 100644 --- a/resource-management/azure-mgmt-utility/src/test/resources/session-records/testVMImageListPublisher.json +++ b/resource-management/azure-mgmt-utility/src/test/resources/session-records/testVMImageListPublisher.json @@ -1 +1 @@ -[{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/SouthEastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?api-version=2015-06-15&$top=1","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14999","StatusCode":"200","x-ms-correlation-request-id":"58d4af4f-b2fc-4204-9a8a-8c85c84bd473","Date":"Fri, 14 Aug 2015 22:44:25 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T224426Z:58d4af4f-b2fc-4204-9a8a-8c85c84bd473","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"313","x-ms-request-id":"02865ec5-59bd-4337-86dc-bd9899ab10a7","Body":"[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201505\"\r\n }\r\n]","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/SouthEastAsia/publishers?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14998","StatusCode":"200","x-ms-correlation-request-id":"9d94b23e-2d11-463c-8d93-6fcb91e9dd3b","Date":"Fri, 14 Aug 2015 22:44:27 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T224428Z:9d94b23e-2d11-463c-8d93-6fcb91e9dd3b","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"59481","x-ms-request-id":"dabcfb09-152d-432c-a034-de4353466a1d","Body":"[{\"location\":\"southeastasia\",\"name\":\"4psa\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/4psa\"},{\"location\":\"southeastasia\",\"name\":\"4ward365\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/4ward365\"},{\"location\":\"southeastasia\",\"name\":\"7isolutions\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/7isolutions\"},{\"location\":\"southeastasia\",\"name\":\"a10networks\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/a10networks\"},{\"location\":\"southeastasia\",\"name\":\"abiquo\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/abiquo\"},{\"location\":\"southeastasia\",\"name\":\"active-navigation\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/active-navigation\"},{\"location\":\"southeastasia\",\"name\":\"activeeon\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activeeon\"},{\"location\":\"southeastasia\",\"name\":\"adam-software\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/adam-software\"},{\"location\":\"southeastasia\",\"name\":\"adatao\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/adatao\"},{\"location\":\"southeastasia\",\"name\":\"adobe\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/adobe\"},{\"location\":\"southeastasia\",\"name\":\"adobe_test\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/adobe_test\"},{\"location\":\"southeastasia\",\"name\":\"advantech\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantech\"},{\"location\":\"southeastasia\",\"name\":\"advantech-webaccess\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantech-webaccess\"},{\"location\":\"southeastasia\",\"name\":\"aerospike\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aerospike\"},{\"location\":\"southeastasia\",\"name\":\"aiscaler-cache-control-ddos-and-url-rewriting-\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"},{\"location\":\"southeastasia\",\"name\":\"alachisoft\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alachisoft\"},{\"location\":\"southeastasia\",\"name\":\"alertlogic\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alertlogic\"},{\"location\":\"southeastasia\",\"name\":\"AlertLogic.Extension\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AlertLogic.Extension\"},{\"location\":\"southeastasia\",\"name\":\"algebraix-data\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/algebraix-data\"},{\"location\":\"southeastasia\",\"name\":\"alldigital-brevity\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alldigital-brevity\"},{\"location\":\"southeastasia\",\"name\":\"altiar\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altiar\"},{\"location\":\"southeastasia\",\"name\":\"appcitoinc\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appcitoinc\"},{\"location\":\"southeastasia\",\"name\":\"appex-networks\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appex-networks\"},{\"location\":\"southeastasia\",\"name\":\"appistry\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appistry\"},{\"location\":\"southeastasia\",\"name\":\"apprenda\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/apprenda\"},{\"location\":\"southeastasia\",\"name\":\"appveyorci\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appveyorci\"},{\"location\":\"southeastasia\",\"name\":\"appzero\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appzero\"},{\"location\":\"southeastasia\",\"name\":\"arangodb\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arangodb\"},{\"location\":\"southeastasia\",\"name\":\"aras\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aras\"},{\"location\":\"southeastasia\",\"name\":\"attunity_cloudbeam\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/attunity_cloudbeam\"},{\"location\":\"southeastasia\",\"name\":\"auriq-systems\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/auriq-systems\"},{\"location\":\"southeastasia\",\"name\":\"awingu\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/awingu\"},{\"location\":\"southeastasia\",\"name\":\"azul\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azul\"},{\"location\":\"southeastasia\",\"name\":\"AzureRT.Test\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureRT.Test\"},{\"location\":\"southeastasia\",\"name\":\"Barracuda.Azure.ConnectivityAgent\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Barracuda.Azure.ConnectivityAgent\"},{\"location\":\"southeastasia\",\"name\":\"barracudanetworks\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/barracudanetworks\"},{\"location\":\"southeastasia\",\"name\":\"basho\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/basho\"},{\"location\":\"southeastasia\",\"name\":\"Bitnami\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Bitnami\"},{\"location\":\"southeastasia\",\"name\":\"bluetalon\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluetalon\"},{\"location\":\"southeastasia\",\"name\":\"boundlessgeo\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/boundlessgeo\"},{\"location\":\"southeastasia\",\"name\":\"boxless\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/boxless\"},{\"location\":\"southeastasia\",\"name\":\"bryte\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bryte\"},{\"location\":\"southeastasia\",\"name\":\"bssw\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bssw\"},{\"location\":\"southeastasia\",\"name\":\"buddhalabs\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/buddhalabs\"},{\"location\":\"southeastasia\",\"name\":\"bwappengine\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bwappengine\"},{\"location\":\"southeastasia\",\"name\":\"Canonical\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Canonical\"},{\"location\":\"southeastasia\",\"name\":\"catechnologies\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/catechnologies\"},{\"location\":\"southeastasia\",\"name\":\"cds\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cds\"},{\"location\":\"southeastasia\",\"name\":\"certivox\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/certivox\"},{\"location\":\"southeastasia\",\"name\":\"checkpoint\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/checkpoint\"},{\"location\":\"southeastasia\",\"name\":\"checkpointsystems\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/checkpointsystems\"},{\"location\":\"southeastasia\",\"name\":\"chef-software\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chef-software\"},{\"location\":\"southeastasia\",\"name\":\"Chef.Bootstrap.WindowsAzure\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Chef.Bootstrap.WindowsAzure\"},{\"location\":\"southeastasia\",\"name\":\"circleci\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/circleci\"},{\"location\":\"southeastasia\",\"name\":\"cires21\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cires21\"},{\"location\":\"southeastasia\",\"name\":\"clickberry\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clickberry\"},{\"location\":\"southeastasia\",\"name\":\"cloudbees-enterprise-jenkins\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbees-enterprise-jenkins\"},{\"location\":\"southeastasia\",\"name\":\"cloudboost\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudboost\"},{\"location\":\"southeastasia\",\"name\":\"cloudera\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudera\"},{\"location\":\"southeastasia\",\"name\":\"cloudlink\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudlink\"},{\"location\":\"southeastasia\",\"name\":\"CloudLink.SecureVM\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/CloudLink.SecureVM\"},{\"location\":\"southeastasia\",\"name\":\"CloudLinkEMC.SecureVM\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/CloudLinkEMC.SecureVM\"},{\"location\":\"southeastasia\",\"name\":\"CloudLinkEMC.SecureVM.Test\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/CloudLinkEMC.SecureVM.Test\"},{\"location\":\"southeastasia\",\"name\":\"cloudsoft\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudsoft\"},{\"location\":\"southeastasia\",\"name\":\"clustrix\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clustrix\"},{\"location\":\"southeastasia\",\"name\":\"codelathe\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codelathe\"},{\"location\":\"southeastasia\",\"name\":\"cohesive\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesive\"},{\"location\":\"southeastasia\",\"name\":\"commvault\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/commvault\"},{\"location\":\"southeastasia\",\"name\":\"Confer\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Confer\"},{\"location\":\"southeastasia\",\"name\":\"Confer.TestSensor\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Confer.TestSensor\"},{\"location\":\"southeastasia\",\"name\":\"cordis\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cordis\"},{\"location\":\"southeastasia\",\"name\":\"corent-technology-pvt\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/corent-technology-pvt\"},{\"location\":\"southeastasia\",\"name\":\"CoreOS\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/CoreOS\"},{\"location\":\"southeastasia\",\"name\":\"cortical-io\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cortical-io\"},{\"location\":\"southeastasia\",\"name\":\"couchbase\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/couchbase\"},{\"location\":\"southeastasia\",\"name\":\"dataart\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataart\"},{\"location\":\"southeastasia\",\"name\":\"datacastle\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datacastle\"},{\"location\":\"southeastasia\",\"name\":\"Datadog.Agent\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Datadog.Agent\"},{\"location\":\"southeastasia\",\"name\":\"dataexpeditioninc\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataexpeditioninc\"},{\"location\":\"southeastasia\",\"name\":\"datalayer\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datalayer\"},{\"location\":\"southeastasia\",\"name\":\"dataliberation\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataliberation\"},{\"location\":\"southeastasia\",\"name\":\"datastax\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datastax\"},{\"location\":\"southeastasia\",\"name\":\"defacto_global_\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/defacto_global_\"},{\"location\":\"southeastasia\",\"name\":\"dell-software\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dell-software\"},{\"location\":\"southeastasia\",\"name\":\"dell_software\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dell_software\"},{\"location\":\"southeastasia\",\"name\":\"derdack\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/derdack\"},{\"location\":\"southeastasia\",\"name\":\"dgsecure\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dgsecure\"},{\"location\":\"southeastasia\",\"name\":\"docker\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/docker\"},{\"location\":\"southeastasia\",\"name\":\"donovapub\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/donovapub\"},{\"location\":\"southeastasia\",\"name\":\"drone\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/drone\"},{\"location\":\"southeastasia\",\"name\":\"dundas\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dundas\"},{\"location\":\"southeastasia\",\"name\":\"dynatrace.ruxit\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dynatrace.ruxit\"},{\"location\":\"southeastasia\",\"name\":\"easyterritory\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/easyterritory\"},{\"location\":\"southeastasia\",\"name\":\"egress\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/egress\"},{\"location\":\"southeastasia\",\"name\":\"elastacloud\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elastacloud\"},{\"location\":\"southeastasia\",\"name\":\"elasticbox\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elasticbox\"},{\"location\":\"southeastasia\",\"name\":\"elfiqnetworks\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elfiqnetworks\"},{\"location\":\"southeastasia\",\"name\":\"eloquera\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eloquera\"},{\"location\":\"southeastasia\",\"name\":\"eperi\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eperi\"},{\"location\":\"southeastasia\",\"name\":\"equilibrium\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equilibrium\"},{\"location\":\"southeastasia\",\"name\":\"ESET\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ESET\"},{\"location\":\"southeastasia\",\"name\":\"ESET.FileSecurity\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ESET.FileSecurity\"},{\"location\":\"southeastasia\",\"name\":\"esri\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esri\"},{\"location\":\"southeastasia\",\"name\":\"eurotech\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eurotech\"},{\"location\":\"southeastasia\",\"name\":\"exasol\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exasol\"},{\"location\":\"southeastasia\",\"name\":\"exit-games\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exit-games\"},{\"location\":\"southeastasia\",\"name\":\"expertime\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/expertime\"},{\"location\":\"southeastasia\",\"name\":\"f5-networks\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/f5-networks\"},{\"location\":\"southeastasia\",\"name\":\"filebridge\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/filebridge\"},{\"location\":\"southeastasia\",\"name\":\"firehost\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firehost\"},{\"location\":\"southeastasia\",\"name\":\"flexerasoftware\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexerasoftware\"},{\"location\":\"southeastasia\",\"name\":\"foghorn-systems\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foghorn-systems\"},{\"location\":\"southeastasia\",\"name\":\"fortinet\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortinet\"},{\"location\":\"southeastasia\",\"name\":\"gemalto-safenet\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gemalto-safenet\"},{\"location\":\"southeastasia\",\"name\":\"Gemalto.SafeNet.ProtectV\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Gemalto.SafeNet.ProtectV\"},{\"location\":\"southeastasia\",\"name\":\"GitHub\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/GitHub\"},{\"location\":\"southeastasia\",\"name\":\"greensql\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/greensql\"},{\"location\":\"southeastasia\",\"name\":\"halobicloud\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/halobicloud\"},{\"location\":\"southeastasia\",\"name\":\"hanu\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hanu\"},{\"location\":\"southeastasia\",\"name\":\"hewlett-packard\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hewlett-packard\"},{\"location\":\"southeastasia\",\"name\":\"hortonworks\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hortonworks\"},{\"location\":\"southeastasia\",\"name\":\"iaansys\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iaansys\"},{\"location\":\"southeastasia\",\"name\":\"iamcloud\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iamcloud\"},{\"location\":\"southeastasia\",\"name\":\"imc\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imc\"},{\"location\":\"southeastasia\",\"name\":\"infolibrarian\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infolibrarian\"},{\"location\":\"southeastasia\",\"name\":\"informatica-cloud\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informatica-cloud\"},{\"location\":\"southeastasia\",\"name\":\"infostrat\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infostrat\"},{\"location\":\"southeastasia\",\"name\":\"intelligent-plant-ltd\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intelligent-plant-ltd\"},{\"location\":\"southeastasia\",\"name\":\"iquest\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iquest\"},{\"location\":\"southeastasia\",\"name\":\"itelios\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/itelios\"},{\"location\":\"southeastasia\",\"name\":\"jelastic\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jelastic\"},{\"location\":\"southeastasia\",\"name\":\"jetnexus\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jetnexus\"},{\"location\":\"southeastasia\",\"name\":\"jfrog\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jfrog\"},{\"location\":\"southeastasia\",\"name\":\"kaazing\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaazing\"},{\"location\":\"southeastasia\",\"name\":\"kaspersky_lab\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaspersky_lab\"},{\"location\":\"southeastasia\",\"name\":\"kemptech\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kemptech\"},{\"location\":\"southeastasia\",\"name\":\"le\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/le\"},{\"location\":\"southeastasia\",\"name\":\"lieberlieber\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lieberlieber\"},{\"location\":\"southeastasia\",\"name\":\"liebsoft\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liebsoft\"},{\"location\":\"southeastasia\",\"name\":\"literatu\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/literatu\"},{\"location\":\"southeastasia\",\"name\":\"loadbalancer\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/loadbalancer\"},{\"location\":\"southeastasia\",\"name\":\"logi-analytics\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logi-analytics\"},{\"location\":\"southeastasia\",\"name\":\"loginpeople\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/loginpeople\"},{\"location\":\"southeastasia\",\"name\":\"logtrust\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logtrust\"},{\"location\":\"southeastasia\",\"name\":\"looker\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/looker\"},{\"location\":\"southeastasia\",\"name\":\"magelia\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/magelia\"},{\"location\":\"southeastasia\",\"name\":\"massiveanalytic-\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/massiveanalytic-\"},{\"location\":\"southeastasia\",\"name\":\"McAfee.EndpointSecurity\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/McAfee.EndpointSecurity\"},{\"location\":\"southeastasia\",\"name\":\"McAfee.EndpointSecurity.test3\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/McAfee.EndpointSecurity.test3\"},{\"location\":\"southeastasia\",\"name\":\"meanio\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/meanio\"},{\"location\":\"southeastasia\",\"name\":\"memsql\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/memsql\"},{\"location\":\"southeastasia\",\"name\":\"mentalnotes\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mentalnotes\"},{\"location\":\"southeastasia\",\"name\":\"mesosphere\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mesosphere\"},{\"location\":\"southeastasia\",\"name\":\"metavistech\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/metavistech\"},{\"location\":\"southeastasia\",\"name\":\"mfiles\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mfiles\"},{\"location\":\"southeastasia\",\"name\":\"Microsoft\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft\"},{\"location\":\"southeastasia\",\"name\":\"Microsoft.Azure.Applications\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Applications\"},{\"location\":\"southeastasia\",\"name\":\"Microsoft.Azure.Backup.Test\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Backup.Test\"},{\"location\":\"southeastasia\",\"name\":\"Microsoft.Azure.Diagnostics\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics\"},{\"location\":\"southeastasia\",\"name\":\"Microsoft.Azure.Extensions\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions\"},{\"location\":\"southeastasia\",\"name\":\"Microsoft.Azure.RecoveryServices\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices\"},{\"location\":\"southeastasia\",\"name\":\"Microsoft.Azure.Security\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security\"},{\"location\":\"southeastasia\",\"name\":\"Microsoft.Azure.Security.Internal\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Internal\"},{\"location\":\"southeastasia\",\"name\":\"Microsoft.Azure.WindowsFabric.Test\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WindowsFabric.Test\"},{\"location\":\"southeastasia\",\"name\":\"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"},{\"location\":\"southeastasia\",\"name\":\"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"},{\"location\":\"southeastasia\",\"name\":\"Microsoft.Compute\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute\"},{\"location\":\"southeastasia\",\"name\":\"Microsoft.EnterpriseCloud.Monitoring\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring\"},{\"location\":\"southeastasia\",\"name\":\"Microsoft.EnterpriseCloud.Monitoring.Test\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"},{\"location\":\"southeastasia\",\"name\":\"Microsoft.HpcCompute\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcCompute\"},{\"location\":\"southeastasia\",\"name\":\"Microsoft.HpcPack\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcPack\"},{\"location\":\"southeastasia\",\"name\":\"Microsoft.OSTCExtensions\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions\"},{\"location\":\"southeastasia\",\"name\":\"Microsoft.Powershell\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell\"},{\"location\":\"southeastasia\",\"name\":\"Microsoft.Powershell.Install\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Install\"},{\"location\":\"southeastasia\",\"name\":\"Microsoft.Powershell.Internal\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Internal\"},{\"location\":\"southeastasia\",\"name\":\"Microsoft.Powershell.Test\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Test\"},{\"location\":\"southeastasia\",\"name\":\"Microsoft.Powershell.Wmf\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Wmf\"},{\"location\":\"southeastasia\",\"name\":\"Microsoft.SqlServer.Managability.IaaS.Test\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"},{\"location\":\"southeastasia\",\"name\":\"Microsoft.SqlServer.Management\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Management\"},{\"location\":\"southeastasia\",\"name\":\"Microsoft.SystemCenter\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SystemCenter\"},{\"location\":\"southeastasia\",\"name\":\"Microsoft.VisualStudio.Azure.RemoteDebug\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"},{\"location\":\"southeastasia\",\"name\":\"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"},{\"location\":\"southeastasia\",\"name\":\"Microsoft.Windows.AzureRemoteApp.Test\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"},{\"location\":\"southeastasia\",\"name\":\"Microsoft.Windows.RemoteDesktop\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.RemoteDesktop\"},{\"location\":\"southeastasia\",\"name\":\"Microsoft.WindowsAzure.Compute\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAzure.Compute\"},{\"location\":\"southeastasia\",\"name\":\"MicrosoftAzureSiteRecovery\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftAzureSiteRecovery\"},{\"location\":\"southeastasia\",\"name\":\"MicrosoftBizTalkServer\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftBizTalkServer\"},{\"location\":\"southeastasia\",\"name\":\"MicrosoftDynamicsAX\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsAX\"},{\"location\":\"southeastasia\",\"name\":\"MicrosoftDynamicsGP\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsGP\"},{\"location\":\"southeastasia\",\"name\":\"MicrosoftDynamicsNAV\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsNAV\"},{\"location\":\"southeastasia\",\"name\":\"MicrosoftHybridCloudStorage\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftHybridCloudStorage\"},{\"location\":\"southeastasia\",\"name\":\"MicrosoftSharePoint\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftSharePoint\"},{\"location\":\"southeastasia\",\"name\":\"MicrosoftSQLServer\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftSQLServer\"},{\"location\":\"southeastasia\",\"name\":\"MicrosoftVisualStudio\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftVisualStudio\"},{\"location\":\"southeastasia\",\"name\":\"MicrosoftWindowsServer\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer\"},{\"location\":\"southeastasia\",\"name\":\"MicrosoftWindowsServerEssentials\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServerEssentials\"},{\"location\":\"southeastasia\",\"name\":\"MicrosoftWindowsServerHPCPack\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServerHPCPack\"},{\"location\":\"southeastasia\",\"name\":\"MicrosoftWindowsServerRemoteDesktop\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServerRemoteDesktop\"},{\"location\":\"southeastasia\",\"name\":\"midvision\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midvision\"},{\"location\":\"southeastasia\",\"name\":\"mokxa-technologies\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mokxa-technologies\"},{\"location\":\"southeastasia\",\"name\":\"moviemasher\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/moviemasher\"},{\"location\":\"southeastasia\",\"name\":\"msopentech\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/msopentech\"},{\"location\":\"southeastasia\",\"name\":\"MSOpenTech.Extensions\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MSOpenTech.Extensions\"},{\"location\":\"southeastasia\",\"name\":\"mtnfog\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mtnfog\"},{\"location\":\"southeastasia\",\"name\":\"mvp-systems\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mvp-systems\"},{\"location\":\"southeastasia\",\"name\":\"mxhero\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mxhero\"},{\"location\":\"southeastasia\",\"name\":\"ncbi\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncbi\"},{\"location\":\"southeastasia\",\"name\":\"netapp\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netapp\"},{\"location\":\"southeastasia\",\"name\":\"nexus\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nexus\"},{\"location\":\"southeastasia\",\"name\":\"nginxinc\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nginxinc\"},{\"location\":\"southeastasia\",\"name\":\"nicepeopleatwork\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nicepeopleatwork\"},{\"location\":\"southeastasia\",\"name\":\"nodejsapi\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nodejsapi\"},{\"location\":\"southeastasia\",\"name\":\"officeclipsuite\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/officeclipsuite\"},{\"location\":\"southeastasia\",\"name\":\"opencell\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opencell\"},{\"location\":\"southeastasia\",\"name\":\"OpenLogic\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/OpenLogic\"},{\"location\":\"southeastasia\",\"name\":\"openmeap\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openmeap\"},{\"location\":\"southeastasia\",\"name\":\"opennebulasystems\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opennebulasystems\"},{\"location\":\"southeastasia\",\"name\":\"Oracle\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Oracle\"},{\"location\":\"southeastasia\",\"name\":\"orientdb\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/orientdb\"},{\"location\":\"southeastasia\",\"name\":\"osisoft\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osisoft\"},{\"location\":\"southeastasia\",\"name\":\"outsystems\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/outsystems\"},{\"location\":\"southeastasia\",\"name\":\"pointmatter\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pointmatter\"},{\"location\":\"southeastasia\",\"name\":\"predictionio\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/predictionio\"},{\"location\":\"southeastasia\",\"name\":\"predixion\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/predixion\"},{\"location\":\"southeastasia\",\"name\":\"prestashop\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prestashop\"},{\"location\":\"southeastasia\",\"name\":\"primestream\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/primestream\"},{\"location\":\"southeastasia\",\"name\":\"profisee\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/profisee\"},{\"location\":\"southeastasia\",\"name\":\"ptv_group\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ptv_group\"},{\"location\":\"southeastasia\",\"name\":\"PuppetLabs\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/PuppetLabs\"},{\"location\":\"southeastasia\",\"name\":\"PuppetLabs.Test\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/PuppetLabs.Test\"},{\"location\":\"southeastasia\",\"name\":\"pxlag_swiss\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pxlag_swiss\"},{\"location\":\"southeastasia\",\"name\":\"rancher\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rancher\"},{\"location\":\"southeastasia\",\"name\":\"redpoint-global\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/redpoint-global\"},{\"location\":\"southeastasia\",\"name\":\"remotelearner\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/remotelearner\"},{\"location\":\"southeastasia\",\"name\":\"revolution-analytics\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/revolution-analytics\"},{\"location\":\"southeastasia\",\"name\":\"RightScaleLinux\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RightScaleLinux\"},{\"location\":\"southeastasia\",\"name\":\"RightScaleWindowsServer\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RightScaleWindowsServer\"},{\"location\":\"southeastasia\",\"name\":\"riverbed\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/riverbed\"},{\"location\":\"southeastasia\",\"name\":\"RiverbedTechnology\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RiverbedTechnology\"},{\"location\":\"southeastasia\",\"name\":\"saltstack\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltstack\"},{\"location\":\"southeastasia\",\"name\":\"sap\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sap\"},{\"location\":\"southeastasia\",\"name\":\"scalearc\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scalearc\"},{\"location\":\"southeastasia\",\"name\":\"scalebase\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scalebase\"},{\"location\":\"southeastasia\",\"name\":\"seagate\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seagate\"},{\"location\":\"southeastasia\",\"name\":\"searchblox\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/searchblox\"},{\"location\":\"southeastasia\",\"name\":\"sharefile\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sharefile\"},{\"location\":\"southeastasia\",\"name\":\"shavlik\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/shavlik\"},{\"location\":\"southeastasia\",\"name\":\"sightapps\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sightapps\"},{\"location\":\"southeastasia\",\"name\":\"sinefa\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinefa\"},{\"location\":\"southeastasia\",\"name\":\"sios_datakeeper\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sios_datakeeper\"},{\"location\":\"southeastasia\",\"name\":\"sisense\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sisense\"},{\"location\":\"southeastasia\",\"name\":\"snip2code\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snip2code\"},{\"location\":\"southeastasia\",\"name\":\"softnas\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softnas\"},{\"location\":\"southeastasia\",\"name\":\"soha\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/soha\"},{\"location\":\"southeastasia\",\"name\":\"solanolabs\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solanolabs\"},{\"location\":\"southeastasia\",\"name\":\"spacecurve\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spacecurve\"},{\"location\":\"southeastasia\",\"name\":\"spagobi\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spagobi\"},{\"location\":\"southeastasia\",\"name\":\"sphere3d\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sphere3d\"},{\"location\":\"southeastasia\",\"name\":\"stackato-platform-as-a-service\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stackato-platform-as-a-service\"},{\"location\":\"southeastasia\",\"name\":\"stackstorm\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stackstorm\"},{\"location\":\"southeastasia\",\"name\":\"starwind\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/starwind\"},{\"location\":\"southeastasia\",\"name\":\"steelhive\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/steelhive\"},{\"location\":\"southeastasia\",\"name\":\"stormshield\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stormshield\"},{\"location\":\"southeastasia\",\"name\":\"stratalux\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratalux\"},{\"location\":\"southeastasia\",\"name\":\"sunview-software\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sunview-software\"},{\"location\":\"southeastasia\",\"name\":\"SUSE\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SUSE\"},{\"location\":\"southeastasia\",\"name\":\"Symantec\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec\"},{\"location\":\"southeastasia\",\"name\":\"Symantec.QA\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.QA\"},{\"location\":\"southeastasia\",\"name\":\"Symantec.staging\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.staging\"},{\"location\":\"southeastasia\",\"name\":\"Symantec.test\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test\"},{\"location\":\"southeastasia\",\"name\":\"tactic\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tactic\"},{\"location\":\"southeastasia\",\"name\":\"targit\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/targit\"},{\"location\":\"southeastasia\",\"name\":\"tavendo\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tavendo\"},{\"location\":\"southeastasia\",\"name\":\"techdivision\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/techdivision\"},{\"location\":\"southeastasia\",\"name\":\"telepat\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/telepat\"},{\"location\":\"southeastasia\",\"name\":\"tenable\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tenable\"},{\"location\":\"southeastasia\",\"name\":\"tentity\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tentity\"},{\"location\":\"southeastasia\",\"name\":\"Test.Barracuda.Azure.ConnectivityAgent\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Barracuda.Azure.ConnectivityAgent\"},{\"location\":\"southeastasia\",\"name\":\"Test.Gemalto.SafeNet.ProtectV\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Gemalto.SafeNet.ProtectV\"},{\"location\":\"southeastasia\",\"name\":\"Test.Gemalto.SafeNet.ProtectV.Azure\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Gemalto.SafeNet.ProtectV.Azure\"},{\"location\":\"southeastasia\",\"name\":\"Test.TrendMicro.DeepSecurity\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.TrendMicro.DeepSecurity\"},{\"location\":\"southeastasia\",\"name\":\"thinkboxsoftware\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thinkboxsoftware\"},{\"location\":\"southeastasia\",\"name\":\"topdesk\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/topdesk\"},{\"location\":\"southeastasia\",\"name\":\"torusware\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/torusware\"},{\"location\":\"southeastasia\",\"name\":\"transvault\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transvault\"},{\"location\":\"southeastasia\",\"name\":\"trendmicro\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/trendmicro\"},{\"location\":\"southeastasia\",\"name\":\"TrendMicro.DeepSecurity\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.DeepSecurity\"},{\"location\":\"southeastasia\",\"name\":\"TrendMicro.DeepSecurity.Test2\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.DeepSecurity.Test2\"},{\"location\":\"southeastasia\",\"name\":\"TrendMicro.PortalProtect\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.PortalProtect\"},{\"location\":\"southeastasia\",\"name\":\"tsa-public-service\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tsa-public-service\"},{\"location\":\"southeastasia\",\"name\":\"typesafe\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/typesafe\"},{\"location\":\"southeastasia\",\"name\":\"ubercloud\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ubercloud\"},{\"location\":\"southeastasia\",\"name\":\"usp\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/usp\"},{\"location\":\"southeastasia\",\"name\":\"veeam\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/veeam\"},{\"location\":\"southeastasia\",\"name\":\"vidispine\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vidispine\"},{\"location\":\"southeastasia\",\"name\":\"vidizmo\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vidizmo\"},{\"location\":\"southeastasia\",\"name\":\"virtualworks\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtualworks\"},{\"location\":\"southeastasia\",\"name\":\"vision_solutions\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vision_solutions\"},{\"location\":\"southeastasia\",\"name\":\"Vormetric\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Vormetric\"},{\"location\":\"southeastasia\",\"name\":\"Vormetric.VormetricTransparentEncryption\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Vormetric.VormetricTransparentEncryption\"},{\"location\":\"southeastasia\",\"name\":\"vte\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vte\"},{\"location\":\"southeastasia\",\"name\":\"waratek\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/waratek\"},{\"location\":\"southeastasia\",\"name\":\"watchfulsoftware\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/watchfulsoftware\"},{\"location\":\"southeastasia\",\"name\":\"websense-apmailpe\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/websense-apmailpe\"},{\"location\":\"southeastasia\",\"name\":\"wmspanel\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wmspanel\"},{\"location\":\"southeastasia\",\"name\":\"workshare-technology\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/workshare-technology\"},{\"location\":\"southeastasia\",\"name\":\"wowza\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wowza\"},{\"location\":\"southeastasia\",\"name\":\"xebialabs\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xebialabs\"},{\"location\":\"southeastasia\",\"name\":\"xfinityinc\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xfinityinc\"},{\"location\":\"southeastasia\",\"name\":\"xmpro\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xmpro\"},{\"location\":\"southeastasia\",\"name\":\"xtremedata\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xtremedata\"},{\"location\":\"southeastasia\",\"name\":\"yellowfin\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yellowfin\"},{\"location\":\"southeastasia\",\"name\":\"your-shop-online\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/your-shop-online\"},{\"location\":\"southeastasia\",\"name\":\"zementis\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zementis\"},{\"location\":\"southeastasia\",\"name\":\"zend\",\"id\":\"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zend\"}]","Content-Type":"application/json; charset=utf-8"}] \ No newline at end of file +[{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/SouthEastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?api-version=2015-06-15&$top=1","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14927","StatusCode":"200","x-ms-correlation-request-id":"4839aea5-0d65-496c-99f7-c1482b9fcf37","Date":"Mon, 19 Oct 2015 20:01:08 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200108Z:4839aea5-0d65-496c-99f7-c1482b9fcf37","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"313","x-ms-request-id":"78285c94-77ba-4b56-b5af-27b36d663519","Body":"[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201506\",\r\n \"id\": \"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201506\"\r\n }\r\n]","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/SouthEastAsia/publishers?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14926","StatusCode":"200","x-ms-correlation-request-id":"c6f30963-61c0-4cdb-8891-2d5aeb3e13f7","Date":"Mon, 19 Oct 2015 20:01:09 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200110Z:c6f30963-61c0-4cdb-8891-2d5aeb3e13f7","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"67457","x-ms-request-id":"34271044-e8b4-434a-9ba2-db6c02c0a337","Body":"[{\"location\":\"southeastasia\",\"name\":\"4psa\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/4psa\"},{\"location\":\"southeastasia\",\"name\":\"4ward365\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/4ward365\"},{\"location\":\"southeastasia\",\"name\":\"7isolutions\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/7isolutions\"},{\"location\":\"southeastasia\",\"name\":\"a10networks\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/a10networks\"},{\"location\":\"southeastasia\",\"name\":\"abiquo\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/abiquo\"},{\"location\":\"southeastasia\",\"name\":\"active-navigation\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/active-navigation\"},{\"location\":\"southeastasia\",\"name\":\"activeeon\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/activeeon\"},{\"location\":\"southeastasia\",\"name\":\"adam-software\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/adam-software\"},{\"location\":\"southeastasia\",\"name\":\"adatao\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/adatao\"},{\"location\":\"southeastasia\",\"name\":\"adobe\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/adobe\"},{\"location\":\"southeastasia\",\"name\":\"adobe_test\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/adobe_test\"},{\"location\":\"southeastasia\",\"name\":\"advantech\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantech\"},{\"location\":\"southeastasia\",\"name\":\"advantech-webaccess\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/advantech-webaccess\"},{\"location\":\"southeastasia\",\"name\":\"aerospike\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aerospike\"},{\"location\":\"southeastasia\",\"name\":\"aimsinnovation\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aimsinnovation\"},{\"location\":\"southeastasia\",\"name\":\"aiscaler-cache-control-ddos-and-url-rewriting-\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"},{\"location\":\"southeastasia\",\"name\":\"alachisoft\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alachisoft\"},{\"location\":\"southeastasia\",\"name\":\"alertlogic\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alertlogic\"},{\"location\":\"southeastasia\",\"name\":\"AlertLogic.Extension\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AlertLogic.Extension\"},{\"location\":\"southeastasia\",\"name\":\"algebraix-data\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/algebraix-data\"},{\"location\":\"southeastasia\",\"name\":\"alldigital-brevity\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/alldigital-brevity\"},{\"location\":\"southeastasia\",\"name\":\"altiar\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/altiar\"},{\"location\":\"southeastasia\",\"name\":\"appcitoinc\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appcitoinc\"},{\"location\":\"southeastasia\",\"name\":\"appex-networks\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appex-networks\"},{\"location\":\"southeastasia\",\"name\":\"appistry\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appistry\"},{\"location\":\"southeastasia\",\"name\":\"apprenda\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/apprenda\"},{\"location\":\"southeastasia\",\"name\":\"appveyorci\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appveyorci\"},{\"location\":\"southeastasia\",\"name\":\"appzero\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/appzero\"},{\"location\":\"southeastasia\",\"name\":\"arangodb\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/arangodb\"},{\"location\":\"southeastasia\",\"name\":\"aras\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aras\"},{\"location\":\"southeastasia\",\"name\":\"array_networks\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/array_networks\"},{\"location\":\"southeastasia\",\"name\":\"attunity_cloudbeam\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/attunity_cloudbeam\"},{\"location\":\"southeastasia\",\"name\":\"auriq-systems\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/auriq-systems\"},{\"location\":\"southeastasia\",\"name\":\"aviatrix-systems\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/aviatrix-systems\"},{\"location\":\"southeastasia\",\"name\":\"awingu\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/awingu\"},{\"location\":\"southeastasia\",\"name\":\"azul\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/azul\"},{\"location\":\"southeastasia\",\"name\":\"AzureRT.Test\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/AzureRT.Test\"},{\"location\":\"southeastasia\",\"name\":\"Barracuda.Azure.ConnectivityAgent\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Barracuda.Azure.ConnectivityAgent\"},{\"location\":\"southeastasia\",\"name\":\"barracudanetworks\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/barracudanetworks\"},{\"location\":\"southeastasia\",\"name\":\"basho\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/basho\"},{\"location\":\"southeastasia\",\"name\":\"Bitnami\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Bitnami\"},{\"location\":\"southeastasia\",\"name\":\"bizagi\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bizagi\"},{\"location\":\"southeastasia\",\"name\":\"bluetalon\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bluetalon\"},{\"location\":\"southeastasia\",\"name\":\"boundlessgeo\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/boundlessgeo\"},{\"location\":\"southeastasia\",\"name\":\"boxless\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/boxless\"},{\"location\":\"southeastasia\",\"name\":\"bryte\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bryte\"},{\"location\":\"southeastasia\",\"name\":\"bssw\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bssw\"},{\"location\":\"southeastasia\",\"name\":\"buddhalabs\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/buddhalabs\"},{\"location\":\"southeastasia\",\"name\":\"bwappengine\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/bwappengine\"},{\"location\":\"southeastasia\",\"name\":\"Canonical\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Canonical\"},{\"location\":\"southeastasia\",\"name\":\"catechnologies\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/catechnologies\"},{\"location\":\"southeastasia\",\"name\":\"cautelalabs\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cautelalabs\"},{\"location\":\"southeastasia\",\"name\":\"cds\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cds\"},{\"location\":\"southeastasia\",\"name\":\"certivox\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/certivox\"},{\"location\":\"southeastasia\",\"name\":\"checkpoint\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/checkpoint\"},{\"location\":\"southeastasia\",\"name\":\"checkpointsystems\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/checkpointsystems\"},{\"location\":\"southeastasia\",\"name\":\"chef-software\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/chef-software\"},{\"location\":\"southeastasia\",\"name\":\"Chef.Bootstrap.WindowsAzure\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Chef.Bootstrap.WindowsAzure\"},{\"location\":\"southeastasia\",\"name\":\"circleci\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/circleci\"},{\"location\":\"southeastasia\",\"name\":\"cires21\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cires21\"},{\"location\":\"southeastasia\",\"name\":\"cisco\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cisco\"},{\"location\":\"southeastasia\",\"name\":\"clickberry\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clickberry\"},{\"location\":\"southeastasia\",\"name\":\"cloudbees-enterprise-jenkins\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudbees-enterprise-jenkins\"},{\"location\":\"southeastasia\",\"name\":\"cloudboost\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudboost\"},{\"location\":\"southeastasia\",\"name\":\"cloudera\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudera\"},{\"location\":\"southeastasia\",\"name\":\"cloudera1qaz2wsx\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudera1qaz2wsx\"},{\"location\":\"southeastasia\",\"name\":\"cloudlink\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudlink\"},{\"location\":\"southeastasia\",\"name\":\"CloudLink.SecureVM\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/CloudLink.SecureVM\"},{\"location\":\"southeastasia\",\"name\":\"CloudLinkEMC.SecureVM\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/CloudLinkEMC.SecureVM\"},{\"location\":\"southeastasia\",\"name\":\"CloudLinkEMC.SecureVM.Test\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/CloudLinkEMC.SecureVM.Test\"},{\"location\":\"southeastasia\",\"name\":\"cloudsoft\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cloudsoft\"},{\"location\":\"southeastasia\",\"name\":\"clustrix\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/clustrix\"},{\"location\":\"southeastasia\",\"name\":\"codelathe\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/codelathe\"},{\"location\":\"southeastasia\",\"name\":\"cohesive\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cohesive\"},{\"location\":\"southeastasia\",\"name\":\"commvault\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/commvault\"},{\"location\":\"southeastasia\",\"name\":\"Confer\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Confer\"},{\"location\":\"southeastasia\",\"name\":\"Confer.TestSensor\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Confer.TestSensor\"},{\"location\":\"southeastasia\",\"name\":\"cordis\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cordis\"},{\"location\":\"southeastasia\",\"name\":\"corent-technology-pvt\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/corent-technology-pvt\"},{\"location\":\"southeastasia\",\"name\":\"CoreOS\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/CoreOS\"},{\"location\":\"southeastasia\",\"name\":\"cortical-io\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/cortical-io\"},{\"location\":\"southeastasia\",\"name\":\"couchbase\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/couchbase\"},{\"location\":\"southeastasia\",\"name\":\"dataart\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataart\"},{\"location\":\"southeastasia\",\"name\":\"datacastle\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datacastle\"},{\"location\":\"southeastasia\",\"name\":\"Datadog.Agent\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Datadog.Agent\"},{\"location\":\"southeastasia\",\"name\":\"dataexpeditioninc\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataexpeditioninc\"},{\"location\":\"southeastasia\",\"name\":\"datalayer\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datalayer\"},{\"location\":\"southeastasia\",\"name\":\"dataliberation\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dataliberation\"},{\"location\":\"southeastasia\",\"name\":\"datastax\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datastax\"},{\"location\":\"southeastasia\",\"name\":\"defacto_global_\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/defacto_global_\"},{\"location\":\"southeastasia\",\"name\":\"dell-software\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dell-software\"},{\"location\":\"southeastasia\",\"name\":\"dell_software\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dell_software\"},{\"location\":\"southeastasia\",\"name\":\"derdack\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/derdack\"},{\"location\":\"southeastasia\",\"name\":\"dgsecure\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dgsecure\"},{\"location\":\"southeastasia\",\"name\":\"docker\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/docker\"},{\"location\":\"southeastasia\",\"name\":\"donovapub\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/donovapub\"},{\"location\":\"southeastasia\",\"name\":\"drone\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/drone\"},{\"location\":\"southeastasia\",\"name\":\"dundas\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dundas\"},{\"location\":\"southeastasia\",\"name\":\"dynatrace.ruxit\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/dynatrace.ruxit\"},{\"location\":\"southeastasia\",\"name\":\"easyterritory\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/easyterritory\"},{\"location\":\"southeastasia\",\"name\":\"egress\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/egress\"},{\"location\":\"southeastasia\",\"name\":\"eip\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eip\"},{\"location\":\"southeastasia\",\"name\":\"eip-eipower\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eip-eipower\"},{\"location\":\"southeastasia\",\"name\":\"elastacloud\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elastacloud\"},{\"location\":\"southeastasia\",\"name\":\"elasticbox\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elasticbox\"},{\"location\":\"southeastasia\",\"name\":\"elfiqnetworks\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/elfiqnetworks\"},{\"location\":\"southeastasia\",\"name\":\"eloquera\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eloquera\"},{\"location\":\"southeastasia\",\"name\":\"eperi\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eperi\"},{\"location\":\"southeastasia\",\"name\":\"equilibrium\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/equilibrium\"},{\"location\":\"southeastasia\",\"name\":\"ESET\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ESET\"},{\"location\":\"southeastasia\",\"name\":\"ESET.FileSecurity\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ESET.FileSecurity\"},{\"location\":\"southeastasia\",\"name\":\"esri\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/esri\"},{\"location\":\"southeastasia\",\"name\":\"eurotech\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/eurotech\"},{\"location\":\"southeastasia\",\"name\":\"exasol\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exasol\"},{\"location\":\"southeastasia\",\"name\":\"exit-games\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/exit-games\"},{\"location\":\"southeastasia\",\"name\":\"expertime\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/expertime\"},{\"location\":\"southeastasia\",\"name\":\"f5-networks\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/f5-networks\"},{\"location\":\"southeastasia\",\"name\":\"filebridge\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/filebridge\"},{\"location\":\"southeastasia\",\"name\":\"firehost\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/firehost\"},{\"location\":\"southeastasia\",\"name\":\"flexerasoftware\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/flexerasoftware\"},{\"location\":\"southeastasia\",\"name\":\"foghorn-systems\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/foghorn-systems\"},{\"location\":\"southeastasia\",\"name\":\"fortinet\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/fortinet\"},{\"location\":\"southeastasia\",\"name\":\"gemalto-safenet\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/gemalto-safenet\"},{\"location\":\"southeastasia\",\"name\":\"Gemalto.SafeNet.ProtectV\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Gemalto.SafeNet.ProtectV\"},{\"location\":\"southeastasia\",\"name\":\"GitHub\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/GitHub\"},{\"location\":\"southeastasia\",\"name\":\"greensql\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/greensql\"},{\"location\":\"southeastasia\",\"name\":\"haivision\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/haivision\"},{\"location\":\"southeastasia\",\"name\":\"halobicloud\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/halobicloud\"},{\"location\":\"southeastasia\",\"name\":\"hanu\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hanu\"},{\"location\":\"southeastasia\",\"name\":\"hewlett-packard\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hewlett-packard\"},{\"location\":\"southeastasia\",\"name\":\"hortonworks\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/hortonworks\"},{\"location\":\"southeastasia\",\"name\":\"iaansys\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iaansys\"},{\"location\":\"southeastasia\",\"name\":\"iamcloud\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iamcloud\"},{\"location\":\"southeastasia\",\"name\":\"imc\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/imc\"},{\"location\":\"southeastasia\",\"name\":\"incredibuild\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/incredibuild\"},{\"location\":\"southeastasia\",\"name\":\"infolibrarian\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infolibrarian\"},{\"location\":\"southeastasia\",\"name\":\"informatica-cloud\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/informatica-cloud\"},{\"location\":\"southeastasia\",\"name\":\"infostrat\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/infostrat\"},{\"location\":\"southeastasia\",\"name\":\"intel\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intel\"},{\"location\":\"southeastasia\",\"name\":\"intelligent-plant-ltd\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/intelligent-plant-ltd\"},{\"location\":\"southeastasia\",\"name\":\"iquest\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/iquest\"},{\"location\":\"southeastasia\",\"name\":\"itelios\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/itelios\"},{\"location\":\"southeastasia\",\"name\":\"jedox\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jedox\"},{\"location\":\"southeastasia\",\"name\":\"jelastic\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jelastic\"},{\"location\":\"southeastasia\",\"name\":\"jetnexus\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jetnexus\"},{\"location\":\"southeastasia\",\"name\":\"jfrog\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/jfrog\"},{\"location\":\"southeastasia\",\"name\":\"kaazing\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaazing\"},{\"location\":\"southeastasia\",\"name\":\"kaspersky_lab\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kaspersky_lab\"},{\"location\":\"southeastasia\",\"name\":\"kemptech\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/kemptech\"},{\"location\":\"southeastasia\",\"name\":\"le\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/le\"},{\"location\":\"southeastasia\",\"name\":\"lieberlieber\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/lieberlieber\"},{\"location\":\"southeastasia\",\"name\":\"liebsoft\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/liebsoft\"},{\"location\":\"southeastasia\",\"name\":\"literatu\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/literatu\"},{\"location\":\"southeastasia\",\"name\":\"loadbalancer\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/loadbalancer\"},{\"location\":\"southeastasia\",\"name\":\"LocalTest.TrendMicro.DeepSecurity\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/LocalTest.TrendMicro.DeepSecurity\"},{\"location\":\"southeastasia\",\"name\":\"logi-analytics\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logi-analytics\"},{\"location\":\"southeastasia\",\"name\":\"loginpeople\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/loginpeople\"},{\"location\":\"southeastasia\",\"name\":\"logtrust\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/logtrust\"},{\"location\":\"southeastasia\",\"name\":\"looker\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/looker\"},{\"location\":\"southeastasia\",\"name\":\"luxoft\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/luxoft\"},{\"location\":\"southeastasia\",\"name\":\"magelia\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/magelia\"},{\"location\":\"southeastasia\",\"name\":\"massiveanalytic-\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/massiveanalytic-\"},{\"location\":\"southeastasia\",\"name\":\"McAfee.EndpointSecurity\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/McAfee.EndpointSecurity\"},{\"location\":\"southeastasia\",\"name\":\"McAfee.EndpointSecurity.test3\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/McAfee.EndpointSecurity.test3\"},{\"location\":\"southeastasia\",\"name\":\"meanio\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/meanio\"},{\"location\":\"southeastasia\",\"name\":\"memsql\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/memsql\"},{\"location\":\"southeastasia\",\"name\":\"mentalnotes\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mentalnotes\"},{\"location\":\"southeastasia\",\"name\":\"mesosphere\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mesosphere\"},{\"location\":\"southeastasia\",\"name\":\"metavistech\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/metavistech\"},{\"location\":\"southeastasia\",\"name\":\"mfiles\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mfiles\"},{\"location\":\"southeastasia\",\"name\":\"Microsoft\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft\"},{\"location\":\"southeastasia\",\"name\":\"microsoft-ads\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/microsoft-ads\"},{\"location\":\"southeastasia\",\"name\":\"Microsoft.Azure.Applications\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Applications\"},{\"location\":\"southeastasia\",\"name\":\"Microsoft.Azure.Backup.Test\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Backup.Test\"},{\"location\":\"southeastasia\",\"name\":\"Microsoft.Azure.Diagnostics\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Diagnostics\"},{\"location\":\"southeastasia\",\"name\":\"Microsoft.Azure.Extensions\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Extensions\"},{\"location\":\"southeastasia\",\"name\":\"Microsoft.Azure.RecoveryServices\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.RecoveryServices\"},{\"location\":\"southeastasia\",\"name\":\"Microsoft.Azure.Security\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security\"},{\"location\":\"southeastasia\",\"name\":\"Microsoft.Azure.Security.Internal\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.Security.Internal\"},{\"location\":\"southeastasia\",\"name\":\"Microsoft.Azure.WindowsFabric.Test\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Azure.WindowsFabric.Test\"},{\"location\":\"southeastasia\",\"name\":\"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"},{\"location\":\"southeastasia\",\"name\":\"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"},{\"location\":\"southeastasia\",\"name\":\"Microsoft.Compute\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Compute\"},{\"location\":\"southeastasia\",\"name\":\"Microsoft.EnterpriseCloud.Monitoring\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring\"},{\"location\":\"southeastasia\",\"name\":\"Microsoft.EnterpriseCloud.Monitoring.Test\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.EnterpriseCloud.Monitoring.Test\"},{\"location\":\"southeastasia\",\"name\":\"Microsoft.HpcCompute\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcCompute\"},{\"location\":\"southeastasia\",\"name\":\"Microsoft.HpcPack\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.HpcPack\"},{\"location\":\"southeastasia\",\"name\":\"Microsoft.OSTCExtensions\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.OSTCExtensions\"},{\"location\":\"southeastasia\",\"name\":\"Microsoft.Powershell\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell\"},{\"location\":\"southeastasia\",\"name\":\"Microsoft.Powershell.Install\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Install\"},{\"location\":\"southeastasia\",\"name\":\"Microsoft.Powershell.Internal\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Internal\"},{\"location\":\"southeastasia\",\"name\":\"Microsoft.Powershell.Test\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Test\"},{\"location\":\"southeastasia\",\"name\":\"Microsoft.Powershell.Test2\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Test2\"},{\"location\":\"southeastasia\",\"name\":\"Microsoft.Powershell.Test3\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Test3\"},{\"location\":\"southeastasia\",\"name\":\"Microsoft.Powershell.Wmf\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Wmf\"},{\"location\":\"southeastasia\",\"name\":\"Microsoft.Powershell.Wmf4Test\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Powershell.Wmf4Test\"},{\"location\":\"southeastasia\",\"name\":\"Microsoft.SqlServer.Managability.IaaS.Test\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"},{\"location\":\"southeastasia\",\"name\":\"Microsoft.SqlServer.Management\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SqlServer.Management\"},{\"location\":\"southeastasia\",\"name\":\"Microsoft.SystemCenter\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.SystemCenter\"},{\"location\":\"southeastasia\",\"name\":\"Microsoft.VisualStudio\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio\"},{\"location\":\"southeastasia\",\"name\":\"Microsoft.VisualStudio.Azure.ETWTraceListenerService\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.ETWTraceListenerService\"},{\"location\":\"southeastasia\",\"name\":\"Microsoft.VisualStudio.Azure.RemoteDebug\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"},{\"location\":\"southeastasia\",\"name\":\"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"},{\"location\":\"southeastasia\",\"name\":\"Microsoft.VisualStudio.ServiceProfiler.Test\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.VisualStudio.ServiceProfiler.Test\"},{\"location\":\"southeastasia\",\"name\":\"Microsoft.Windows.AzureRemoteApp.Test\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"},{\"location\":\"southeastasia\",\"name\":\"Microsoft.Windows.RemoteDesktop\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.Windows.RemoteDesktop\"},{\"location\":\"southeastasia\",\"name\":\"Microsoft.WindowsAzure.Compute\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Microsoft.WindowsAzure.Compute\"},{\"location\":\"southeastasia\",\"name\":\"MicrosoftAzureSiteRecovery\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftAzureSiteRecovery\"},{\"location\":\"southeastasia\",\"name\":\"MicrosoftBizTalkServer\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftBizTalkServer\"},{\"location\":\"southeastasia\",\"name\":\"MicrosoftDynamicsAX\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsAX\"},{\"location\":\"southeastasia\",\"name\":\"MicrosoftDynamicsGP\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsGP\"},{\"location\":\"southeastasia\",\"name\":\"MicrosoftDynamicsNAV\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftDynamicsNAV\"},{\"location\":\"southeastasia\",\"name\":\"MicrosoftHybridCloudStorage\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftHybridCloudStorage\"},{\"location\":\"southeastasia\",\"name\":\"MicrosoftSharePoint\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftSharePoint\"},{\"location\":\"southeastasia\",\"name\":\"MicrosoftSQLServer\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftSQLServer\"},{\"location\":\"southeastasia\",\"name\":\"MicrosoftVisualStudio\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftVisualStudio\"},{\"location\":\"southeastasia\",\"name\":\"MicrosoftWindowsServer\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer\"},{\"location\":\"southeastasia\",\"name\":\"MicrosoftWindowsServerEssentials\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServerEssentials\"},{\"location\":\"southeastasia\",\"name\":\"MicrosoftWindowsServerHPCPack\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServerHPCPack\"},{\"location\":\"southeastasia\",\"name\":\"MicrosoftWindowsServerRemoteDesktop\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServerRemoteDesktop\"},{\"location\":\"southeastasia\",\"name\":\"midvision\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/midvision\"},{\"location\":\"southeastasia\",\"name\":\"miracl_linux\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/miracl_linux\"},{\"location\":\"southeastasia\",\"name\":\"mokxa-technologies\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mokxa-technologies\"},{\"location\":\"southeastasia\",\"name\":\"moviemasher\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/moviemasher\"},{\"location\":\"southeastasia\",\"name\":\"msopentech\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/msopentech\"},{\"location\":\"southeastasia\",\"name\":\"MSOpenTech.Extensions\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MSOpenTech.Extensions\"},{\"location\":\"southeastasia\",\"name\":\"mtnfog\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mtnfog\"},{\"location\":\"southeastasia\",\"name\":\"mvp-systems\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mvp-systems\"},{\"location\":\"southeastasia\",\"name\":\"mxhero\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/mxhero\"},{\"location\":\"southeastasia\",\"name\":\"ncbi\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ncbi\"},{\"location\":\"southeastasia\",\"name\":\"netapp\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/netapp\"},{\"location\":\"southeastasia\",\"name\":\"nexus\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nexus\"},{\"location\":\"southeastasia\",\"name\":\"nginxinc\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nginxinc\"},{\"location\":\"southeastasia\",\"name\":\"nicepeopleatwork\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nicepeopleatwork\"},{\"location\":\"southeastasia\",\"name\":\"nodejsapi\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nodejsapi\"},{\"location\":\"southeastasia\",\"name\":\"nuxeo\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/nuxeo\"},{\"location\":\"southeastasia\",\"name\":\"officeclipsuite\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/officeclipsuite\"},{\"location\":\"southeastasia\",\"name\":\"op5\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/op5\"},{\"location\":\"southeastasia\",\"name\":\"opencell\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opencell\"},{\"location\":\"southeastasia\",\"name\":\"OpenLogic\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/OpenLogic\"},{\"location\":\"southeastasia\",\"name\":\"openmeap\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/openmeap\"},{\"location\":\"southeastasia\",\"name\":\"opennebulasystems\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opennebulasystems\"},{\"location\":\"southeastasia\",\"name\":\"opentext\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/opentext\"},{\"location\":\"southeastasia\",\"name\":\"Oracle\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Oracle\"},{\"location\":\"southeastasia\",\"name\":\"orientdb\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/orientdb\"},{\"location\":\"southeastasia\",\"name\":\"osisoft\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/osisoft\"},{\"location\":\"southeastasia\",\"name\":\"outsystems\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/outsystems\"},{\"location\":\"southeastasia\",\"name\":\"panzura-file-system\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/panzura-file-system\"},{\"location\":\"southeastasia\",\"name\":\"pointmatter\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pointmatter\"},{\"location\":\"southeastasia\",\"name\":\"predictionio\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/predictionio\"},{\"location\":\"southeastasia\",\"name\":\"predixion\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/predixion\"},{\"location\":\"southeastasia\",\"name\":\"prestashop\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/prestashop\"},{\"location\":\"southeastasia\",\"name\":\"primestream\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/primestream\"},{\"location\":\"southeastasia\",\"name\":\"profisee\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/profisee\"},{\"location\":\"southeastasia\",\"name\":\"ptv_group\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ptv_group\"},{\"location\":\"southeastasia\",\"name\":\"PuppetLabs\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/PuppetLabs\"},{\"location\":\"southeastasia\",\"name\":\"PuppetLabs.Test\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/PuppetLabs.Test\"},{\"location\":\"southeastasia\",\"name\":\"pxlag_swiss\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/pxlag_swiss\"},{\"location\":\"southeastasia\",\"name\":\"rancher\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rancher\"},{\"location\":\"southeastasia\",\"name\":\"redpoint-global\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/redpoint-global\"},{\"location\":\"southeastasia\",\"name\":\"remotelearner\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/remotelearner\"},{\"location\":\"southeastasia\",\"name\":\"revolution-analytics\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/revolution-analytics\"},{\"location\":\"southeastasia\",\"name\":\"RightScaleLinux\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RightScaleLinux\"},{\"location\":\"southeastasia\",\"name\":\"RightScaleWindowsServer\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RightScaleWindowsServer\"},{\"location\":\"southeastasia\",\"name\":\"riverbed\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/riverbed\"},{\"location\":\"southeastasia\",\"name\":\"RiverbedTechnology\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/RiverbedTechnology\"},{\"location\":\"southeastasia\",\"name\":\"rocketsoftware\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rocketsoftware\"},{\"location\":\"southeastasia\",\"name\":\"rocket_software\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/rocket_software\"},{\"location\":\"southeastasia\",\"name\":\"saltstack\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/saltstack\"},{\"location\":\"southeastasia\",\"name\":\"sap\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sap\"},{\"location\":\"southeastasia\",\"name\":\"scalearc\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scalearc\"},{\"location\":\"southeastasia\",\"name\":\"scalebase\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/scalebase\"},{\"location\":\"southeastasia\",\"name\":\"seagate\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/seagate\"},{\"location\":\"southeastasia\",\"name\":\"searchblox\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/searchblox\"},{\"location\":\"southeastasia\",\"name\":\"sensorberg\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sensorberg\"},{\"location\":\"southeastasia\",\"name\":\"servoy\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/servoy\"},{\"location\":\"southeastasia\",\"name\":\"sharefile\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sharefile\"},{\"location\":\"southeastasia\",\"name\":\"shavlik\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/shavlik\"},{\"location\":\"southeastasia\",\"name\":\"sightapps\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sightapps\"},{\"location\":\"southeastasia\",\"name\":\"sinefa\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sinefa\"},{\"location\":\"southeastasia\",\"name\":\"sios_datakeeper\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sios_datakeeper\"},{\"location\":\"southeastasia\",\"name\":\"sisense\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sisense\"},{\"location\":\"southeastasia\",\"name\":\"snip2code\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/snip2code\"},{\"location\":\"southeastasia\",\"name\":\"softnas\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/softnas\"},{\"location\":\"southeastasia\",\"name\":\"soha\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/soha\"},{\"location\":\"southeastasia\",\"name\":\"solanolabs\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/solanolabs\"},{\"location\":\"southeastasia\",\"name\":\"spacecurve\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spacecurve\"},{\"location\":\"southeastasia\",\"name\":\"spagobi\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/spagobi\"},{\"location\":\"southeastasia\",\"name\":\"sphere3d\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sphere3d\"},{\"location\":\"southeastasia\",\"name\":\"stackato-platform-as-a-service\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stackato-platform-as-a-service\"},{\"location\":\"southeastasia\",\"name\":\"stackstorm\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stackstorm\"},{\"location\":\"southeastasia\",\"name\":\"starwind\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/starwind\"},{\"location\":\"southeastasia\",\"name\":\"steelhive\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/steelhive\"},{\"location\":\"southeastasia\",\"name\":\"stonefly\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stonefly\"},{\"location\":\"southeastasia\",\"name\":\"stormshield\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stormshield\"},{\"location\":\"southeastasia\",\"name\":\"stratalux\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/stratalux\"},{\"location\":\"southeastasia\",\"name\":\"sunview-software\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/sunview-software\"},{\"location\":\"southeastasia\",\"name\":\"SUSE\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/SUSE\"},{\"location\":\"southeastasia\",\"name\":\"Symantec\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec\"},{\"location\":\"southeastasia\",\"name\":\"Symantec.QA\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.QA\"},{\"location\":\"southeastasia\",\"name\":\"Symantec.staging\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.staging\"},{\"location\":\"southeastasia\",\"name\":\"Symantec.test\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Symantec.test\"},{\"location\":\"southeastasia\",\"name\":\"tactic\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tactic\"},{\"location\":\"southeastasia\",\"name\":\"talon\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/talon\"},{\"location\":\"southeastasia\",\"name\":\"targit\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/targit\"},{\"location\":\"southeastasia\",\"name\":\"tavendo\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tavendo\"},{\"location\":\"southeastasia\",\"name\":\"techdivision\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/techdivision\"},{\"location\":\"southeastasia\",\"name\":\"telepat\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/telepat\"},{\"location\":\"southeastasia\",\"name\":\"tenable\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tenable\"},{\"location\":\"southeastasia\",\"name\":\"tentity\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tentity\"},{\"location\":\"southeastasia\",\"name\":\"Test.Barracuda.Azure.ConnectivityAgent\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Barracuda.Azure.ConnectivityAgent\"},{\"location\":\"southeastasia\",\"name\":\"Test.Gemalto.SafeNet.ProtectV\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Gemalto.SafeNet.ProtectV\"},{\"location\":\"southeastasia\",\"name\":\"Test.Gemalto.SafeNet.ProtectV.Azure\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.Gemalto.SafeNet.ProtectV.Azure\"},{\"location\":\"southeastasia\",\"name\":\"Test.TrendMicro.DeepSecurity\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.TrendMicro.DeepSecurity\"},{\"location\":\"southeastasia\",\"name\":\"Test.TrendMicro.DeepSecurity2\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.TrendMicro.DeepSecurity2\"},{\"location\":\"southeastasia\",\"name\":\"Test.TrendMicro.DeepSecurity3\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Test.TrendMicro.DeepSecurity3\"},{\"location\":\"southeastasia\",\"name\":\"thinkboxsoftware\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/thinkboxsoftware\"},{\"location\":\"southeastasia\",\"name\":\"topdesk\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/topdesk\"},{\"location\":\"southeastasia\",\"name\":\"torusware\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/torusware\"},{\"location\":\"southeastasia\",\"name\":\"transvault\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/transvault\"},{\"location\":\"southeastasia\",\"name\":\"trendmicro\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/trendmicro\"},{\"location\":\"southeastasia\",\"name\":\"TrendMicro.DeepSecurity\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.DeepSecurity\"},{\"location\":\"southeastasia\",\"name\":\"TrendMicro.DeepSecurity.Test2\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.DeepSecurity.Test2\"},{\"location\":\"southeastasia\",\"name\":\"TrendMicro.PortalProtect\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/TrendMicro.PortalProtect\"},{\"location\":\"southeastasia\",\"name\":\"tsa-public-service\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/tsa-public-service\"},{\"location\":\"southeastasia\",\"name\":\"typesafe\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/typesafe\"},{\"location\":\"southeastasia\",\"name\":\"ubercloud\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/ubercloud\"},{\"location\":\"southeastasia\",\"name\":\"unidesk\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/unidesk\"},{\"location\":\"southeastasia\",\"name\":\"usp\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/usp\"},{\"location\":\"southeastasia\",\"name\":\"vbot\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vbot\"},{\"location\":\"southeastasia\",\"name\":\"veeam\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/veeam\"},{\"location\":\"southeastasia\",\"name\":\"vidispine\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vidispine\"},{\"location\":\"southeastasia\",\"name\":\"vidizmo\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vidizmo\"},{\"location\":\"southeastasia\",\"name\":\"virtualworks\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/virtualworks\"},{\"location\":\"southeastasia\",\"name\":\"vision_solutions\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vision_solutions\"},{\"location\":\"southeastasia\",\"name\":\"vmturbo\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vmturbo\"},{\"location\":\"southeastasia\",\"name\":\"Vormetric\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Vormetric\"},{\"location\":\"southeastasia\",\"name\":\"vte\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/vte\"},{\"location\":\"southeastasia\",\"name\":\"WAD-VMSS.Test\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/WAD-VMSS.Test\"},{\"location\":\"southeastasia\",\"name\":\"WAD2AI.Diagnostics.Test\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/WAD2AI.Diagnostics.Test\"},{\"location\":\"southeastasia\",\"name\":\"WADVMSS.Test\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/WADVMSS.Test\"},{\"location\":\"southeastasia\",\"name\":\"waratek\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/waratek\"},{\"location\":\"southeastasia\",\"name\":\"warewolf-esb\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/warewolf-esb\"},{\"location\":\"southeastasia\",\"name\":\"watchfulsoftware\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/watchfulsoftware\"},{\"location\":\"southeastasia\",\"name\":\"websense-apmailpe\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/websense-apmailpe\"},{\"location\":\"southeastasia\",\"name\":\"wmspanel\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wmspanel\"},{\"location\":\"southeastasia\",\"name\":\"workshare-technology\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/workshare-technology\"},{\"location\":\"southeastasia\",\"name\":\"wowza\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/wowza\"},{\"location\":\"southeastasia\",\"name\":\"xebialabs\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xebialabs\"},{\"location\":\"southeastasia\",\"name\":\"xfinityinc\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xfinityinc\"},{\"location\":\"southeastasia\",\"name\":\"xmpro\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xmpro\"},{\"location\":\"southeastasia\",\"name\":\"xtremedata\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/xtremedata\"},{\"location\":\"southeastasia\",\"name\":\"yellowfin\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/yellowfin\"},{\"location\":\"southeastasia\",\"name\":\"your-shop-online\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/your-shop-online\"},{\"location\":\"southeastasia\",\"name\":\"zementis\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zementis\"},{\"location\":\"southeastasia\",\"name\":\"zend\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zend\"},{\"location\":\"southeastasia\",\"name\":\"zoomdata\",\"id\":\"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/zoomdata\"}]","Content-Type":"application/json; charset=utf-8"}] \ No newline at end of file diff --git a/resource-management/azure-mgmt-utility/src/test/resources/session-records/testVMImageListSkus.json b/resource-management/azure-mgmt-utility/src/test/resources/session-records/testVMImageListSkus.json index 082b7ea7f0cf..6d6a8a2cf7e7 100644 --- a/resource-management/azure-mgmt-utility/src/test/resources/session-records/testVMImageListSkus.json +++ b/resource-management/azure-mgmt-utility/src/test/resources/session-records/testVMImageListSkus.json @@ -1 +1 @@ -[{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/SouthEastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?api-version=2015-06-15&$top=1","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14998","StatusCode":"200","x-ms-correlation-request-id":"cd6335b5-6647-4ff8-b82d-9d82e23511b8","Date":"Fri, 14 Aug 2015 22:44:35 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T224435Z:cd6335b5-6647-4ff8-b82d-9d82e23511b8","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"313","x-ms-request-id":"f3ea2d33-a112-4b06-951c-1c11df49373f","Body":"[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201505\"\r\n }\r\n]","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/SouthEastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14997","StatusCode":"200","x-ms-correlation-request-id":"df99c655-ab38-47ae-98c8-9f04cda7a507","Date":"Fri, 14 Aug 2015 22:44:35 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T224435Z:df99c655-ab38-47ae-98c8-9f04cda7a507","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1541","x-ms-request-id":"63b34f61-eef0-4989-aec5-6bc5bbc8ea62","Body":"[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2016-Technical-Preview-with-Containers\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Technical-Preview-with-Containers\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Windows-Server-Technical-Preview\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview\"\r\n }\r\n]","Content-Type":"application/json; charset=utf-8"}] \ No newline at end of file +[{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/SouthEastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?api-version=2015-06-15&$top=1","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14925","StatusCode":"200","x-ms-correlation-request-id":"d7211b10-3b55-4d82-a19f-081a18b28066","Date":"Mon, 19 Oct 2015 20:01:16 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200117Z:d7211b10-3b55-4d82-a19f-081a18b28066","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"313","x-ms-request-id":"a73e3176-b202-4d59-94c3-ce22fcd7e213","Body":"[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201506\",\r\n \"id\": \"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201506\"\r\n }\r\n]","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/SouthEastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14924","StatusCode":"200","x-ms-correlation-request-id":"3434dfb6-491a-4bd1-afd9-a256cd7b243c","Date":"Mon, 19 Oct 2015 20:01:18 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200118Z:3434dfb6-491a-4bd1-afd9-a256cd7b243c","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1545","x-ms-request-id":"5c8fbed3-5399-4dc8-a172-46d384bfe9b3","Body":"[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2008-R2-SP1\",\r\n \"id\": \"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2008-R2-SP1\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2012-Datacenter\",\r\n \"id\": \"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-Datacenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2012-R2-Datacenter\",\r\n \"id\": \"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"2016-Technical-Preview-3-with-Containers\",\r\n \"id\": \"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2016-Technical-Preview-3-with-Containers\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"Windows-Server-Technical-Preview\",\r\n \"id\": \"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/Windows-Server-Technical-Preview\"\r\n }\r\n]","Content-Type":"application/json; charset=utf-8"}] \ No newline at end of file diff --git a/resource-management/azure-mgmt-utility/src/test/resources/session-records/testVMImageListWithFilters.json b/resource-management/azure-mgmt-utility/src/test/resources/session-records/testVMImageListWithFilters.json index 67a94c290894..9ef9c8d4451c 100644 --- a/resource-management/azure-mgmt-utility/src/test/resources/session-records/testVMImageListWithFilters.json +++ b/resource-management/azure-mgmt-utility/src/test/resources/session-records/testVMImageListWithFilters.json @@ -1 +1 @@ -[{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/SouthEastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?api-version=2015-06-15&$top=1","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14997","StatusCode":"200","x-ms-correlation-request-id":"b307b512-d4ce-4f64-ba94-7c36d841da57","Date":"Fri, 14 Aug 2015 22:44:18 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T224419Z:b307b512-d4ce-4f64-ba94-7c36d841da57","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"313","x-ms-request-id":"c281cbab-3a46-49f3-ab57-7ef577722cc4","Body":"[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201505\"\r\n }\r\n]","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/SouthEastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?api-version=2015-06-15&$top=0","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14996","StatusCode":"200","x-ms-correlation-request-id":"9f9c4f2c-1703-4e79-b7e2-23abc17d8db1","Date":"Fri, 14 Aug 2015 22:44:19 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T224420Z:9f9c4f2c-1703-4e79-b7e2-23abc17d8db1","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"2","x-ms-request-id":"44b611eb-81f9-4043-b050-8d4e2ab4e07f","Body":"[]","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/SouthEastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?api-version=2015-06-15&$top=1","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14995","StatusCode":"200","x-ms-correlation-request-id":"1ca6dafa-a41f-4fb0-8e58-df679bd421e3","Date":"Fri, 14 Aug 2015 22:44:20 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T224421Z:1ca6dafa-a41f-4fb0-8e58-df679bd421e3","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"313","x-ms-request-id":"fe6bfad0-9be6-4493-b122-1de076ead28c","Body":"[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201505\"\r\n }\r\n]","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/SouthEastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?api-version=2015-06-15&$top=2","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14994","StatusCode":"200","x-ms-correlation-request-id":"5ec85874-fbfb-4909-b040-0ed9ae52f446","Date":"Fri, 14 Aug 2015 22:44:21 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T224422Z:5ec85874-fbfb-4909-b040-0ed9ae52f446","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"623","x-ms-request-id":"73872cc6-ccf9-4199-a80d-d8fe36dc555f","Body":"[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201505\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201506\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201506\"\r\n }\r\n]","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/SouthEastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?api-version=2015-06-15&$orderby=name%20desc","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14993","StatusCode":"200","x-ms-correlation-request-id":"309c8b51-fcee-4693-9f28-79c5a4915378","Date":"Fri, 14 Aug 2015 22:44:22 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T224423Z:309c8b51-fcee-4693-9f28-79c5a4915378","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"937","x-ms-request-id":"5243a952-3e06-4d9f-b0f5-cfc626f2728d","Body":"[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.20150726\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.20150726\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201506\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201506\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201505\"\r\n }\r\n]","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/SouthEastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?api-version=2015-06-15&$top=2&$orderby=name%20asc","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14992","StatusCode":"200","x-ms-correlation-request-id":"9734a961-b29f-4e96-a417-f73d5cdfac8a","Date":"Fri, 14 Aug 2015 22:44:24 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T224424Z:9734a961-b29f-4e96-a417-f73d5cdfac8a","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"623","x-ms-request-id":"0f8e9bd1-f00c-4f43-a15c-e309c5e10e90","Body":"[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201505\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201506\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201506\"\r\n }\r\n]","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/SouthEastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?api-version=2015-06-15&$top=2&$orderby=name%20desc","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14991","StatusCode":"200","x-ms-correlation-request-id":"39025379-88fe-46b8-9e19-af6f7ffb3de7","Date":"Fri, 14 Aug 2015 22:44:25 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T224425Z:39025379-88fe-46b8-9e19-af6f7ffb3de7","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"627","x-ms-request-id":"75507834-80f1-4a6d-be88-66077e18e1d9","Body":"[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.20150726\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.20150726\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201506\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201506\"\r\n }\r\n]","Content-Type":"application/json; charset=utf-8"}] \ No newline at end of file +[{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/SouthEastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?api-version=2015-06-15&$top=1","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14984","StatusCode":"200","x-ms-correlation-request-id":"1e245500-945e-4f34-a1dc-cea0cb974bd9","Date":"Mon, 19 Oct 2015 20:01:02 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200102Z:1e245500-945e-4f34-a1dc-cea0cb974bd9","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"313","x-ms-request-id":"ee119a93-bf79-41e4-9cb2-8a7dfa13b06b","Body":"[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201506\",\r\n \"id\": \"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201506\"\r\n }\r\n]","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/SouthEastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?api-version=2015-06-15&$top=0","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14983","StatusCode":"200","x-ms-correlation-request-id":"b5523747-f84e-432e-80f5-258444cf3abb","Date":"Mon, 19 Oct 2015 20:01:02 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200103Z:b5523747-f84e-432e-80f5-258444cf3abb","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"2","x-ms-request-id":"cfaaaa55-0bb9-44bf-ac24-d5ca5a8a6af8","Body":"[]","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/SouthEastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?api-version=2015-06-15&$top=1","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14982","StatusCode":"200","x-ms-correlation-request-id":"d0796372-ed06-4cad-952b-23a4fd9cb6f6","Date":"Mon, 19 Oct 2015 20:01:03 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200104Z:d0796372-ed06-4cad-952b-23a4fd9cb6f6","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"313","x-ms-request-id":"95f230b1-ea79-41e2-80ab-200e5efc42be","Body":"[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201506\",\r\n \"id\": \"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201506\"\r\n }\r\n]","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/SouthEastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?api-version=2015-06-15&$top=2","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14981","StatusCode":"200","x-ms-correlation-request-id":"2fc4638e-d6ea-4793-998e-c93f7e32ce8e","Date":"Mon, 19 Oct 2015 20:01:04 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200105Z:2fc4638e-d6ea-4793-998e-c93f7e32ce8e","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"627","x-ms-request-id":"e256b24a-f499-4c34-812e-b915ac0da8c7","Body":"[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201506\",\r\n \"id\": \"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201506\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.20150726\",\r\n \"id\": \"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.20150726\"\r\n }\r\n]","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/SouthEastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?api-version=2015-06-15&$orderby=name%20desc","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14980","StatusCode":"200","x-ms-correlation-request-id":"bfe8dbc7-f6b4-45aa-875a-2247e831fe80","Date":"Mon, 19 Oct 2015 20:01:05 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200106Z:bfe8dbc7-f6b4-45aa-875a-2247e831fe80","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1255","x-ms-request-id":"ffe9255b-21d4-4143-96cd-ccbd41f44287","Body":"[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.20150916\",\r\n \"id\": \"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.20150916\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.20150825\",\r\n \"id\": \"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.20150825\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.20150726\",\r\n \"id\": \"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.20150726\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201506\",\r\n \"id\": \"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201506\"\r\n }\r\n]","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/SouthEastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?api-version=2015-06-15&$top=2&$orderby=name%20asc","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14979","StatusCode":"200","x-ms-correlation-request-id":"ab236e9d-d3be-4d7d-bd9e-f2be873caf35","Date":"Mon, 19 Oct 2015 20:01:06 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200107Z:ab236e9d-d3be-4d7d-bd9e-f2be873caf35","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"627","x-ms-request-id":"caab3d0e-6049-49e5-8fed-8e60d8cca50a","Body":"[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201506\",\r\n \"id\": \"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201506\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.20150726\",\r\n \"id\": \"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.20150726\"\r\n }\r\n]","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/SouthEastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?api-version=2015-06-15&$top=2&$orderby=name%20desc","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14978","StatusCode":"200","x-ms-correlation-request-id":"b18cedf1-c8c4-44de-8dad-f19968e78e3d","Date":"Mon, 19 Oct 2015 20:01:07 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200107Z:b18cedf1-c8c4-44de-8dad-f19968e78e3d","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"631","x-ms-request-id":"d694aea3-d1d8-40e6-9e0e-1bb0ecb8f886","Body":"[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.20150916\",\r\n \"id\": \"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.20150916\"\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.20150825\",\r\n \"id\": \"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.20150825\"\r\n }\r\n]","Content-Type":"application/json; charset=utf-8"}] \ No newline at end of file diff --git a/resource-management/azure-mgmt-utility/src/test/resources/session-records/testVMMarketplace.json b/resource-management/azure-mgmt-utility/src/test/resources/session-records/testVMMarketplace.json index 3153e3354b0a..47329713a67b 100644 --- a/resource-management/azure-mgmt-utility/src/test/resources/session-records/testVMMarketplace.json +++ b/resource-management/azure-mgmt-utility/src/test/resources/session-records/testVMMarketplace.json @@ -1 +1 @@ -[{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/SouthEastAsia/publishers/datastax/artifacttypes/vmimage/offers/datastax-enterprise-non-production-use-only/skus/sandbox_single-node/versions?api-version=2015-06-15&$top=1","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14997","StatusCode":"200","x-ms-correlation-request-id":"3950b001-482e-4cd0-8b7c-bb9e8dd5c1c8","Date":"Fri, 14 Aug 2015 22:44:37 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T224437Z:3950b001-482e-4cd0-8b7c-bb9e8dd5c1c8","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"320","x-ms-request-id":"bbb5176d-4065-44b2-aa2c-2db4b4a22528","Body":"[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datastax/ArtifactTypes/VMImage/Offers/datastax-enterprise-non-production-use-only/Skus/sandbox_single-node/Versions/1.0.0\"\r\n }\r\n]","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/SouthEastAsia/publishers/datastax/artifacttypes/vmimage/offers/datastax-enterprise-non-production-use-only/skus/sandbox_single-node/versions/1.0.0?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14996","StatusCode":"200","x-ms-correlation-request-id":"94f49f02-5449-4dc9-9051-b77827c2817b","Date":"Fri, 14 Aug 2015 22:44:38 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T224438Z:94f49f02-5449-4dc9-9051-b77827c2817b","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"576","x-ms-request-id":"dbbff90f-d725-498e-99f5-c3b33a153bae","Body":"{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"datastax\",\r\n \"name\": \"sandbox_single-node\",\r\n \"product\": \"datastax-enterprise-non-production-use-only\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datastax/ArtifactTypes/VMImage/Offers/datastax-enterprise-non-production-use-only/Skus/sandbox_single-node/Versions/1.0.0\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/javatestrgnafojm?api-version=2014-04-01-preview","Content-Type":"application/json; charset=utf-8"},{"x-ms-ratelimit-remaining-subscription-writes":"1198","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"ad2cc107-757f-4d92-b494-e5225221f864","Date":"Fri, 14 Aug 2015 22:44:39 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T224439Z:ad2cc107-757f-4d92-b494-e5225221f864","Expires":"-1","Content-Length":"192","x-ms-request-id":"ad2cc107-757f-4d92-b494-e5225221f864","Body":"{\"id\":\"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnafojm\",\"name\":\"javatestrgnafojm\",\"location\":\"southeastasia\",\"properties\":{\"provisioningState\":\"Succeeded\"}}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnafojm/providers/Microsoft.Storage/storageAccounts/javatest1sanrofue?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-ratelimit-remaining-subscription-writes":"1198","Pragma":"no-cache","StatusCode":"202","x-ms-correlation-request-id":"7e65532d-8466-4a4f-900f-27aebd264e91","Date":"Fri, 14 Aug 2015 22:44:45 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"25","x-ms-routing-request-id":"WESTUS:20150814T224446Z:7e65532d-8466-4a4f-900f-27aebd264e91","Expires":"-1","Content-Length":"4","x-ms-request-id":"86582a65-7331-4e4b-91f2-6e0b7555dce5","Body":"null","Content-Type":"application/json; charset=utf-8","Location":"https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/86582a65-7331-4e4b-91f2-6e0b7555dce5?monitor=true&api-version=2015-05-01-preview"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/86582a65-7331-4e4b-91f2-6e0b7555dce5?monitor=true&api-version=2015-05-01-preview"},{"Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14995","StatusCode":"202","x-ms-correlation-request-id":"b7c4eeb9-8859-4629-b31a-10c49898cef5","Date":"Fri, 14 Aug 2015 22:44:45 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"25","x-ms-routing-request-id":"WESTUS:20150814T224446Z:b7c4eeb9-8859-4629-b31a-10c49898cef5","Expires":"-1","Content-Length":"4","x-ms-request-id":"583bb2f8-31d7-4b8f-a1e9-8804321a96bd","Body":"null","Content-Type":"application/json; charset=utf-8","Location":"https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/86582a65-7331-4e4b-91f2-6e0b7555dce5?monitor=true&api-version=2015-05-01-preview"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/86582a65-7331-4e4b-91f2-6e0b7555dce5?monitor=true&api-version=2015-05-01-preview"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14994","StatusCode":"200","x-ms-correlation-request-id":"0ff8ec20-a17d-4d81-ab8a-c219596569c7","Date":"Fri, 14 Aug 2015 22:45:11 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T224511Z:0ff8ec20-a17d-4d81-ab8a-c219596569c7","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"73","x-ms-request-id":"e24698bb-6a51-4fe8-b7c4-f1321daa26dd","Body":"{\"properties\":{\"accountType\":\"Standard_GRS\"},\"location\":\"Southeast Asia\"}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnafojm/providers/Microsoft.Storage/storageAccounts?api-version=2015-05-01-preview"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14988","StatusCode":"200","x-ms-correlation-request-id":"c5ec88d0-31cb-4103-b041-7d27acffb346","Date":"Fri, 14 Aug 2015 22:45:12 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T224512Z:c5ec88d0-31cb-4103-b041-7d27acffb346","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"728","x-ms-request-id":"31757644-ac4d-48d1-9154-5d80ae90bcdf","Body":"{\"value\":[{\"id\":\"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnafojm/providers/Microsoft.Storage/storageAccounts/javatest1sanrofue\",\"name\":\"javatest1sanrofue\",\"location\":\"Southeast Asia\",\"type\":\"Microsoft.Storage/storageAccounts\",\"properties\":{\"provisioningState\":\"Succeeded\",\"accountType\":\"Standard_GRS\",\"primaryEndpoints\":{\"blob\":\"https://javatest1sanrofue.blob.core.windows.net/\",\"queue\":\"https://javatest1sanrofue.queue.core.windows.net/\",\"table\":\"https://javatest1sanrofue.table.core.windows.net/\"},\"primaryLocation\":\"Southeast Asia\",\"statusOfPrimary\":\"Available\",\"secondaryLocation\":\"East Asia\",\"statusOfSecondary\":\"Available\",\"creationTime\":\"2015-08-14T22:44:43.9868111Z\"}}],\"nextLink\":\"\"}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnafojm/providers/Microsoft.Network/virtualnetworks/javatest1vnetnptnxa?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-ratelimit-remaining-subscription-writes":"1197","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"90b552ed-3e28-4e2b-be48-12f479504fb6","Date":"Fri, 14 Aug 2015 22:45:16 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"10","x-ms-routing-request-id":"WESTUS:20150814T224517Z:90b552ed-3e28-4e2b-be48-12f479504fb6","Expires":"-1","Content-Length":"1045","Azure-AsyncOperation":"https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/293957d2-3ce8-4862-802b-15ccd39c09d0?api-version=2015-05-01-preview","x-ms-request-id":"293957d2-3ce8-4862-802b-15ccd39c09d0","Body":"{\r\n \"name\": \"javatest1vnetnptnxa\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnafojm/providers/Microsoft.Network/virtualNetworks/javatest1vnetnptnxa\",\r\n \"etag\": \"W/\\\"7ec078ef-b049-46c5-9db9-f3f903c1037a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"cddb124a-09d5-4393-b6ad-e5cf8d6b352b\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"javatest1subnnawfay\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnafojm/providers/Microsoft.Network/virtualNetworks/javatest1vnetnptnxa/subnets/javatest1subnnawfay\",\r\n \"etag\": \"W/\\\"7ec078ef-b049-46c5-9db9-f3f903c1037a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"x-ms-version":"2015-05-01-preview","User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/293957d2-3ce8-4862-802b-15ccd39c09d0?api-version=2015-05-01-preview"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14991","StatusCode":"200","x-ms-correlation-request-id":"f0998255-999f-4ead-8350-e973eff457be","Date":"Fri, 14 Aug 2015 22:45:17 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T224518Z:f0998255-999f-4ead-8350-e973eff457be","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"29","x-ms-request-id":"39b6e551-1e6a-4b83-a4ff-fc4b615d7b05","Body":"{\r\n \"status\": \"Succeeded\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnafojm/providers/Microsoft.Network/virtualnetworks/javatest1vnetnptnxa?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14998","StatusCode":"200","x-ms-correlation-request-id":"ad042ac3-bab0-4b51-b6f6-3e51b6158258","Date":"Fri, 14 Aug 2015 22:45:18 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","ETag":"W/\"8cd3c457-99d1-4b1b-aa45-8ab4686fa803\"","x-ms-routing-request-id":"WESTUS:20150814T224519Z:ad042ac3-bab0-4b51-b6f6-3e51b6158258","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1047","x-ms-request-id":"178bcc04-3faf-4a36-8685-3e1a4b8d02a1","Body":"{\r\n \"name\": \"javatest1vnetnptnxa\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnafojm/providers/Microsoft.Network/virtualNetworks/javatest1vnetnptnxa\",\r\n \"etag\": \"W/\\\"8cd3c457-99d1-4b1b-aa45-8ab4686fa803\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"cddb124a-09d5-4393-b6ad-e5cf8d6b352b\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"javatest1subnnawfay\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnafojm/providers/Microsoft.Network/virtualNetworks/javatest1vnetnptnxa/subnets/javatest1subnnawfay\",\r\n \"etag\": \"W/\\\"8cd3c457-99d1-4b1b-aa45-8ab4686fa803\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnafojm/providers/Microsoft.Network/networkInterfaces/javatest1nicnwpynf?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-ratelimit-remaining-subscription-writes":"1197","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"977c589d-770d-40c1-b41b-3611355fbc61","Date":"Fri, 14 Aug 2015 22:45:22 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T224523Z:977c589d-770d-40c1-b41b-3611355fbc61","Expires":"-1","Content-Length":"1234","Azure-AsyncOperation":"https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/e384a582-25de-4b44-a6dc-fa0a8e409465?api-version=2015-05-01-preview","x-ms-request-id":"e384a582-25de-4b44-a6dc-fa0a8e409465","Body":"{\r\n \"name\": \"javatest1nicnwpynf\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnafojm/providers/Microsoft.Network/networkInterfaces/javatest1nicnwpynf\",\r\n \"etag\": \"W/\\\"207409b4-77f6-434a-919b-dcc8f3280f6d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5e89e300-de85-4e7b-8700-5f426615775d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"javatest1ipcnbschh\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnafojm/providers/Microsoft.Network/networkInterfaces/javatest1nicnwpynf/ipConfigurations/javatest1ipcnbschh\",\r\n \"etag\": \"W/\\\"207409b4-77f6-434a-919b-dcc8f3280f6d\\\"\",\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnafojm/providers/Microsoft.Network/virtualNetworks/javatest1vnetnptnxa/subnets/javatest1subnnawfay\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"x-ms-version":"2015-05-01-preview","User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/e384a582-25de-4b44-a6dc-fa0a8e409465?api-version=2015-05-01-preview"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14993","StatusCode":"200","x-ms-correlation-request-id":"20865939-1d1f-4525-9c7e-77b1ed759814","Date":"Fri, 14 Aug 2015 22:45:23 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T224524Z:20865939-1d1f-4525-9c7e-77b1ed759814","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"29","x-ms-request-id":"7cb309fe-fc44-4360-a44d-28777e06f353","Body":"{\r\n \"status\": \"Succeeded\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnafojm/providers/Microsoft.Network/networkInterfaces/javatest1nicnwpynf?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14997","StatusCode":"200","x-ms-correlation-request-id":"685a6489-9d72-48cf-aa1b-53c0f5a6f463","Date":"Fri, 14 Aug 2015 22:45:24 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","ETag":"W/\"207409b4-77f6-434a-919b-dcc8f3280f6d\"","x-ms-routing-request-id":"WESTUS:20150814T224524Z:685a6489-9d72-48cf-aa1b-53c0f5a6f463","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1234","x-ms-request-id":"af518349-159f-4e84-8fbc-278f4819a411","Body":"{\r\n \"name\": \"javatest1nicnwpynf\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnafojm/providers/Microsoft.Network/networkInterfaces/javatest1nicnwpynf\",\r\n \"etag\": \"W/\\\"207409b4-77f6-434a-919b-dcc8f3280f6d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5e89e300-de85-4e7b-8700-5f426615775d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"javatest1ipcnbschh\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnafojm/providers/Microsoft.Network/networkInterfaces/javatest1nicnwpynf/ipConfigurations/javatest1ipcnbschh\",\r\n \"etag\": \"W/\\\"207409b4-77f6-434a-919b-dcc8f3280f6d\\\"\",\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnafojm/providers/Microsoft.Network/virtualNetworks/javatest1vnetnptnxa/subnets/javatest1subnnawfay\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnafojm/providers/Microsoft.Compute/availabilitySets/javatest1asnzjklu?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130834748847794074","x-ms-ratelimit-remaining-subscription-writes":"1196","Pragma":"no-cache","StatusCode":"200","x-ms-correlation-request-id":"72cbd49d-6c48-4f0d-84bf-cc645303665f","Date":"Fri, 14 Aug 2015 22:45:28 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T224528Z:72cbd49d-6c48-4f0d-84bf-cc645303665f","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"387","x-ms-request-id":"093be9f5-2eb4-4b93-965a-c47e4fd2debf","Body":"{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnafojm/providers/Microsoft.Compute/availabilitySets/javatest1asnzjklu\",\r\n \"name\": \"javatest1asnzjklu\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnafojm/providers/Microsoft.Compute/virtualMachines/javatestVMeafyg?api-version=2015-06-15","Content-Type":"application/json"},{"Pragma":"no-cache","StatusCode":"400","x-ms-correlation-request-id":"442cfcc3-3d27-4ab9-92cd-541cac921bab","Date":"Fri, 14 Aug 2015 22:45:29 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-failure-cause":"gateway","x-ms-routing-request-id":"WESTUS:20150814T224529Z:442cfcc3-3d27-4ab9-92cd-541cac921bab","Expires":"-1","Content-Length":"401","x-ms-request-id":"442cfcc3-3d27-4ab9-92cd-541cac921bab","Body":"{\"error\":{\"code\":\"ResourcePurchaseValidationFailed\",\"message\":\"User failed validation to purchase resources. Error message: 'Legal terms have not been accepted for this item on this subscription. To accept legal terms, please go to the Azure portal (http://go.microsoft.com/fwlink/?LinkId=534873) and configure programmatic deployment for the Marketplace item or create it there for the first time'\"}}","Content-Type":"application/json; charset=utf-8"}] \ No newline at end of file +[{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/SouthEastAsia/publishers/datastax/artifacttypes/vmimage/offers/datastax-enterprise-non-production-use-only/skus/sandbox_single-node/versions?api-version=2015-06-15&$top=1","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14975","StatusCode":"200","x-ms-correlation-request-id":"f038d8e4-847f-4368-878e-e666998cc0c2","Date":"Mon, 19 Oct 2015 20:02:34 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200235Z:f038d8e4-847f-4368-878e-e666998cc0c2","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"320","x-ms-request-id":"7b2fefbd-2462-4039-9b63-550e3a4d0478","Body":"[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datastax/ArtifactTypes/VMImage/Offers/datastax-enterprise-non-production-use-only/Skus/sandbox_single-node/Versions/1.0.0\"\r\n }\r\n]","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/SouthEastAsia/publishers/datastax/artifacttypes/vmimage/offers/datastax-enterprise-non-production-use-only/skus/sandbox_single-node/versions/1.0.0?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14974","StatusCode":"200","x-ms-correlation-request-id":"710d38d7-2130-42bf-bf23-91edb87f1e91","Date":"Mon, 19 Oct 2015 20:02:35 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200236Z:710d38d7-2130-42bf-bf23-91edb87f1e91","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"576","x-ms-request-id":"e1170e29-88eb-4598-874f-a38ab7df29cd","Body":"{\r\n \"properties\": {\r\n \"plan\": {\r\n \"publisher\": \"datastax\",\r\n \"name\": \"sandbox_single-node\",\r\n \"product\": \"datastax-enterprise-non-production-use-only\"\r\n },\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"southeastasia\",\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/datastax/ArtifactTypes/VMImage/Offers/datastax-enterprise-non-production-use-only/Skus/sandbox_single-node/Versions/1.0.0\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/javatestrgnnjzog?api-version=2014-04-01-preview","Content-Type":"application/json; charset=utf-8"},{"x-ms-ratelimit-remaining-subscription-writes":"1188","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"5458e8fc-df4a-4d8d-b640-978d96a84289","Date":"Mon, 19 Oct 2015 20:02:37 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200237Z:5458e8fc-df4a-4d8d-b640-978d96a84289","Expires":"-1","Content-Length":"192","x-ms-request-id":"5458e8fc-df4a-4d8d-b640-978d96a84289","Body":"{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnnjzog\",\"name\":\"javatestrgnnjzog\",\"location\":\"southeastasia\",\"properties\":{\"provisioningState\":\"Succeeded\"}}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnnjzog/providers/Microsoft.Storage/storageAccounts/javatest1sanmpozi?api-version=2015-06-15","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-ratelimit-remaining-subscription-writes":"1188","Pragma":"no-cache","StatusCode":"202","x-ms-correlation-request-id":"4ba5406d-57ba-400a-bad1-c8f1ac2d4a70","Date":"Mon, 19 Oct 2015 20:02:38 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"25","x-ms-routing-request-id":"WESTUS:20151019T200239Z:4ba5406d-57ba-400a-bad1-c8f1ac2d4a70","Expires":"-1","Content-Length":"0","x-ms-request-id":"4ba5406d-57ba-400a-bad1-c8f1ac2d4a70","Body":"","Location":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/operations/c3faa99e-7716-4c89-9a7e-0b1d7b46f490?monitor=true&api-version=2015-06-15"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/operations/c3faa99e-7716-4c89-9a7e-0b1d7b46f490?monitor=true&api-version=2015-06-15"},{"Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14991","StatusCode":"202","x-ms-correlation-request-id":"0d2ce797-dc89-4a8c-abe6-1bd987940414","Date":"Mon, 19 Oct 2015 20:02:39 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"25","x-ms-routing-request-id":"WESTUS:20151019T200239Z:0d2ce797-dc89-4a8c-abe6-1bd987940414","Expires":"-1","Content-Length":"0","x-ms-request-id":"0d2ce797-dc89-4a8c-abe6-1bd987940414","Body":"","Location":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/operations/c3faa99e-7716-4c89-9a7e-0b1d7b46f490?monitor=true&api-version=2015-06-15"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/operations/c3faa99e-7716-4c89-9a7e-0b1d7b46f490?monitor=true&api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14990","StatusCode":"200","x-ms-correlation-request-id":"676c885f-1502-4885-a284-a526797744f8","Date":"Mon, 19 Oct 2015 20:03:04 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200304Z:676c885f-1502-4885-a284-a526797744f8","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"72","x-ms-request-id":"676c885f-1502-4885-a284-a526797744f8","Body":"{\"location\":\"SouthEastAsia\",\"properties\":{\"accountType\":\"Standard_LRS\"}}","Content-Type":"application/json"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnnjzog/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14986","StatusCode":"200","x-ms-correlation-request-id":"5cf9b586-54e6-480f-9023-a4cb8d3f07b1","Date":"Mon, 19 Oct 2015 20:03:05 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200305Z:5cf9b586-54e6-480f-9023-a4cb8d3f07b1","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"717","x-ms-request-id":"5cf9b586-54e6-480f-9023-a4cb8d3f07b1","Body":"{\"value\":[{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnnjzog/providers/Microsoft.Storage/storageAccounts/javatest1sanmpozi\",\"location\":\"southeastasia\",\"name\":\"javatest1sanmpozi\",\"properties\":{\"accountType\":\"Standard_LRS\",\"creationTime\":\"2015-10-19T20:02:39.0875036Z\",\"primaryEndpoints\":{\"blob\":\"https://javatest1sanmpozi.blob.core.windows.net/\",\"file\":\"https://javatest1sanmpozi.file.core.windows.net/\",\"queue\":\"https://javatest1sanmpozi.queue.core.windows.net/\",\"table\":\"https://javatest1sanmpozi.table.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}]}\n","Content-Type":"application/json"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnnjzog/providers/Microsoft.Network/virtualnetworks/javatest1vnetnqqmtc?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-ratelimit-remaining-subscription-writes":"1195","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"f12f4598-3ecd-4879-83d5-6f2c2c06973a","Date":"Mon, 19 Oct 2015 20:03:09 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"10","x-ms-routing-request-id":"WESTUS:20151019T200309Z:f12f4598-3ecd-4879-83d5-6f2c2c06973a","Expires":"-1","Content-Length":"1108","Azure-AsyncOperation":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/southeastasia/operations/a9ecf1fe-f451-42e4-a683-824db6cb44b1?api-version=2015-05-01-preview","x-ms-request-id":"a9ecf1fe-f451-42e4-a683-824db6cb44b1","Body":"{\r\n \"name\": \"javatest1vnetnqqmtc\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnnjzog/providers/Microsoft.Network/virtualNetworks/javatest1vnetnqqmtc\",\r\n \"etag\": \"W/\\\"5354e218-040c-4966-8043-8314e7855255\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"c5e39197-4626-4027-b15c-4ad907723d4d\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"javatest1subnnhaqno\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnnjzog/providers/Microsoft.Network/virtualNetworks/javatest1vnetnqqmtc/subnets/javatest1subnnhaqno\",\r\n \"etag\": \"W/\\\"5354e218-040c-4966-8043-8314e7855255\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"},{"x-ms-version":"2015-05-01-preview","User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/southeastasia/operations/a9ecf1fe-f451-42e4-a683-824db6cb44b1?api-version=2015-05-01-preview"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14990","StatusCode":"200","x-ms-correlation-request-id":"8fa1b733-b2db-4624-aa89-8a73c573bc8e","Date":"Mon, 19 Oct 2015 20:03:10 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200310Z:8fa1b733-b2db-4624-aa89-8a73c573bc8e","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"29","x-ms-request-id":"d17af6a6-7bf5-4783-8e92-2dde9107518f","Body":"{\r\n \"status\": \"Succeeded\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnnjzog/providers/Microsoft.Network/virtualnetworks/javatest1vnetnqqmtc?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14973","StatusCode":"200","x-ms-correlation-request-id":"df3c3f2f-24e7-4f00-81ee-e1f268194a49","Date":"Mon, 19 Oct 2015 20:03:11 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","ETag":"W/\"1281d287-6a96-4f5b-a394-de62edc23af2\"","x-ms-routing-request-id":"WESTUS:20151019T200311Z:df3c3f2f-24e7-4f00-81ee-e1f268194a49","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1110","x-ms-request-id":"b2bb4c01-db2a-49fb-98c4-1fdbbc9562ac","Body":"{\r\n \"name\": \"javatest1vnetnqqmtc\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnnjzog/providers/Microsoft.Network/virtualNetworks/javatest1vnetnqqmtc\",\r\n \"etag\": \"W/\\\"1281d287-6a96-4f5b-a394-de62edc23af2\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c5e39197-4626-4027-b15c-4ad907723d4d\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"javatest1subnnhaqno\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnnjzog/providers/Microsoft.Network/virtualNetworks/javatest1vnetnqqmtc/subnets/javatest1subnnhaqno\",\r\n \"etag\": \"W/\\\"1281d287-6a96-4f5b-a394-de62edc23af2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnnjzog/providers/Microsoft.Network/networkInterfaces/javatest1nicnnfvwy?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-ratelimit-remaining-subscription-writes":"1187","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"6b627bae-820e-4ffe-b0bf-cc971e51ace5","Date":"Mon, 19 Oct 2015 20:03:14 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200315Z:6b627bae-820e-4ffe-b0bf-cc971e51ace5","Expires":"-1","Content-Length":"1361","Azure-AsyncOperation":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/southeastasia/operations/80305c19-d1ce-4d15-b4ce-951757a7c88b?api-version=2015-05-01-preview","x-ms-request-id":"80305c19-d1ce-4d15-b4ce-951757a7c88b","Body":"{\r\n \"name\": \"javatest1nicnnfvwy\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnnjzog/providers/Microsoft.Network/networkInterfaces/javatest1nicnnfvwy\",\r\n \"etag\": \"W/\\\"954e3e25-ee66-4aa8-9577-a4eac281a626\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ba709f01-e480-470d-aa82-2af6596c2f83\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"javatest1ipcndyiax\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnnjzog/providers/Microsoft.Network/networkInterfaces/javatest1nicnnfvwy/ipConfigurations/javatest1ipcndyiax\",\r\n \"etag\": \"W/\\\"954e3e25-ee66-4aa8-9577-a4eac281a626\\\"\",\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/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnnjzog/providers/Microsoft.Network/virtualNetworks/javatest1vnetnqqmtc/subnets/javatest1subnnhaqno\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"},{"x-ms-version":"2015-05-01-preview","User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/southeastasia/operations/80305c19-d1ce-4d15-b4ce-951757a7c88b?api-version=2015-05-01-preview"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14988","StatusCode":"200","x-ms-correlation-request-id":"5225b586-c867-4b17-8079-089f45824ec9","Date":"Mon, 19 Oct 2015 20:03:15 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200315Z:5225b586-c867-4b17-8079-089f45824ec9","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"29","x-ms-request-id":"ec904a3e-1976-407a-a9e1-4c29552b3b71","Body":"{\r\n \"status\": \"Succeeded\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnnjzog/providers/Microsoft.Network/networkInterfaces/javatest1nicnnfvwy?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14972","StatusCode":"200","x-ms-correlation-request-id":"a7fbdd04-b985-4da7-a931-a2a7d8a993bc","Date":"Mon, 19 Oct 2015 20:03:16 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","ETag":"W/\"954e3e25-ee66-4aa8-9577-a4eac281a626\"","x-ms-routing-request-id":"WESTUS:20151019T200317Z:a7fbdd04-b985-4da7-a931-a2a7d8a993bc","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1361","x-ms-request-id":"468b455c-4b06-4d5c-9c7a-5227681ba59f","Body":"{\r\n \"name\": \"javatest1nicnnfvwy\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnnjzog/providers/Microsoft.Network/networkInterfaces/javatest1nicnnfvwy\",\r\n \"etag\": \"W/\\\"954e3e25-ee66-4aa8-9577-a4eac281a626\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ba709f01-e480-470d-aa82-2af6596c2f83\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"javatest1ipcndyiax\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnnjzog/providers/Microsoft.Network/networkInterfaces/javatest1nicnnfvwy/ipConfigurations/javatest1ipcndyiax\",\r\n \"etag\": \"W/\\\"954e3e25-ee66-4aa8-9577-a4eac281a626\\\"\",\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/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnnjzog/providers/Microsoft.Network/virtualNetworks/javatest1vnetnqqmtc/subnets/javatest1subnnhaqno\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnnjzog/providers/Microsoft.Compute/availabilitySets/javatest1asnpsnff?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","x-ms-ratelimit-remaining-subscription-writes":"1193","Pragma":"no-cache","StatusCode":"200","x-ms-correlation-request-id":"fed6dc3c-56fc-4a1e-8b67-ce0bc5fe7f48","Date":"Mon, 19 Oct 2015 20:03:20 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200321Z:fed6dc3c-56fc-4a1e-8b67-ce0bc5fe7f48","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"387","x-ms-request-id":"8151102a-6f67-496c-9664-c6234e11a0ea","Body":"{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnnjzog/providers/Microsoft.Compute/availabilitySets/javatest1asnpsnff\",\r\n \"name\": \"javatest1asnpsnff\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnnjzog/providers/Microsoft.Compute/virtualMachines/javatestVMwinye?api-version=2015-06-15","Content-Type":"application/json"},{"Pragma":"no-cache","StatusCode":"400","x-ms-correlation-request-id":"9a83606e-47e4-426d-bdda-9aee958f4675","Date":"Mon, 19 Oct 2015 20:03:21 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-failure-cause":"gateway","x-ms-routing-request-id":"WESTUS:20151019T200322Z:9a83606e-47e4-426d-bdda-9aee958f4675","Expires":"-1","Content-Length":"401","x-ms-request-id":"9a83606e-47e4-426d-bdda-9aee958f4675","Body":"{\"error\":{\"code\":\"ResourcePurchaseValidationFailed\",\"message\":\"User failed validation to purchase resources. Error message: 'Legal terms have not been accepted for this item on this subscription. To accept legal terms, please go to the Azure portal (http://go.microsoft.com/fwlink/?LinkId=534873) and configure programmatic deployment for the Marketplace item or create it there for the first time'\"}}","Content-Type":"application/json; charset=utf-8"}] \ No newline at end of file diff --git a/resource-management/azure-mgmt-utility/src/test/resources/session-records/testVMOperations.json b/resource-management/azure-mgmt-utility/src/test/resources/session-records/testVMOperations.json index d4d54d82bb08..d3dc3c7eb1cc 100644 --- a/resource-management/azure-mgmt-utility/src/test/resources/session-records/testVMOperations.json +++ b/resource-management/azure-mgmt-utility/src/test/resources/session-records/testVMOperations.json @@ -1 +1 @@ -[{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/SouthEastAsia/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.04/versions?api-version=2015-06-15&$top=1","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14983","StatusCode":"200","x-ms-correlation-request-id":"c6d5bcf9-d246-4acc-bc26-98f954e6b140","Date":"Sat, 22 Aug 2015 00:53:32 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150822T005333Z:c6d5bcf9-d246-4acc-bc26-98f954e6b140","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"296","x-ms-request-id":"bdc2c387-7cde-445b-bfea-da71d372c1bd","Body":"[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"15.04.201504171\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04/Versions/15.04.201504171\"\r\n }\r\n]","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/javatestrgnxhehd?api-version=2014-04-01-preview","Content-Type":"application/json; charset=utf-8"},{"x-ms-ratelimit-remaining-subscription-writes":"1199","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"851a2c10-fc96-43d7-8d65-6f105e14a46e","Date":"Sat, 22 Aug 2015 00:53:35 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150822T005335Z:851a2c10-fc96-43d7-8d65-6f105e14a46e","Expires":"-1","Content-Length":"192","x-ms-request-id":"851a2c10-fc96-43d7-8d65-6f105e14a46e","Body":"{\"id\":\"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnxhehd\",\"name\":\"javatestrgnxhehd\",\"location\":\"southeastasia\",\"properties\":{\"provisioningState\":\"Succeeded\"}}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnxhehd/providers/Microsoft.Storage/storageAccounts/javatest1sansuane?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-ratelimit-remaining-subscription-writes":"1197","Pragma":"no-cache","StatusCode":"202","x-ms-correlation-request-id":"93de7935-7e38-42e6-89b0-42870e83e02e","Date":"Sat, 22 Aug 2015 00:53:40 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"25","x-ms-routing-request-id":"WESTUS:20150822T005341Z:93de7935-7e38-42e6-89b0-42870e83e02e","Expires":"-1","Content-Length":"4","x-ms-request-id":"c831553a-f1ec-447d-8818-213fa4212eb9","Body":"null","Content-Type":"application/json; charset=utf-8","Location":"https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/c831553a-f1ec-447d-8818-213fa4212eb9?monitor=true&api-version=2015-05-01-preview"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/c831553a-f1ec-447d-8818-213fa4212eb9?monitor=true&api-version=2015-05-01-preview"},{"Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14945","StatusCode":"202","x-ms-correlation-request-id":"98bb07dd-9e7d-4e93-9274-506a817e74ce","Date":"Sat, 22 Aug 2015 00:53:40 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"25","x-ms-routing-request-id":"WESTUS:20150822T005341Z:98bb07dd-9e7d-4e93-9274-506a817e74ce","Expires":"-1","Content-Length":"4","x-ms-request-id":"045a7a32-7bd7-4385-8ba3-ce4a02b0299c","Body":"null","Content-Type":"application/json; charset=utf-8","Location":"https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/c831553a-f1ec-447d-8818-213fa4212eb9?monitor=true&api-version=2015-05-01-preview"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/c831553a-f1ec-447d-8818-213fa4212eb9?monitor=true&api-version=2015-05-01-preview"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14944","StatusCode":"200","x-ms-correlation-request-id":"0541f38a-0e1b-497a-8686-fe4957dc010f","Date":"Sat, 22 Aug 2015 00:54:06 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150822T005407Z:0541f38a-0e1b-497a-8686-fe4957dc010f","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"73","x-ms-request-id":"af0784d4-fd87-4c54-b487-3e29cca93e35","Body":"{\"properties\":{\"accountType\":\"Standard_GRS\"},\"location\":\"Southeast Asia\"}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnxhehd/providers/Microsoft.Storage/storageAccounts?api-version=2015-05-01-preview"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14993","StatusCode":"200","x-ms-correlation-request-id":"51d1b6d8-c746-4623-97c2-8071d546fddc","Date":"Sat, 22 Aug 2015 00:54:07 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150822T005407Z:51d1b6d8-c746-4623-97c2-8071d546fddc","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"728","x-ms-request-id":"a57e1e16-8332-4838-8173-002274d76938","Body":"{\"value\":[{\"id\":\"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnxhehd/providers/Microsoft.Storage/storageAccounts/javatest1sansuane\",\"name\":\"javatest1sansuane\",\"location\":\"Southeast Asia\",\"type\":\"Microsoft.Storage/storageAccounts\",\"properties\":{\"provisioningState\":\"Succeeded\",\"accountType\":\"Standard_GRS\",\"primaryEndpoints\":{\"blob\":\"https://javatest1sansuane.blob.core.windows.net/\",\"queue\":\"https://javatest1sansuane.queue.core.windows.net/\",\"table\":\"https://javatest1sansuane.table.core.windows.net/\"},\"primaryLocation\":\"Southeast Asia\",\"statusOfPrimary\":\"Available\",\"secondaryLocation\":\"East Asia\",\"statusOfSecondary\":\"Available\",\"creationTime\":\"2015-08-22T00:53:39.2864169Z\"}}],\"nextLink\":\"\"}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnxhehd/providers/Microsoft.Network/virtualnetworks/javatest1vnetnymkbi?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-ratelimit-remaining-subscription-writes":"1198","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"427cb39a-1003-46a4-9634-38437079f645","Date":"Sat, 22 Aug 2015 00:54:12 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"10","x-ms-routing-request-id":"WESTUS:20150822T005412Z:427cb39a-1003-46a4-9634-38437079f645","Expires":"-1","Content-Length":"1060","Azure-AsyncOperation":"https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/1febe821-681a-493e-a0da-d70e1c55a0f3?api-version=2015-05-01-preview","x-ms-request-id":"1febe821-681a-493e-a0da-d70e1c55a0f3","Body":"{\r\n \"name\": \"javatest1vnetnymkbi\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnxhehd/providers/Microsoft.Network/virtualNetworks/javatest1vnetnymkbi\",\r\n \"etag\": \"W/\\\"3c768f8b-5d61-430f-80e9-da71b8fd5e55\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"e137ae1d-4238-4bc9-8030-3e304b27553f\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"javatest1subnngacis\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnxhehd/providers/Microsoft.Network/virtualNetworks/javatest1vnetnymkbi/subnets/javatest1subnngacis\",\r\n \"etag\": \"W/\\\"3c768f8b-5d61-430f-80e9-da71b8fd5e55\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"x-ms-version":"2015-05-01-preview","User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/1febe821-681a-493e-a0da-d70e1c55a0f3?api-version=2015-05-01-preview"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14953","StatusCode":"200","x-ms-correlation-request-id":"8182e0e8-c800-43e9-99c6-e47781208730","Date":"Sat, 22 Aug 2015 00:54:13 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150822T005413Z:8182e0e8-c800-43e9-99c6-e47781208730","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"29","x-ms-request-id":"3a3c1b01-ed11-465e-bd95-145e7c294f44","Body":"{\r\n \"status\": \"Succeeded\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnxhehd/providers/Microsoft.Network/virtualnetworks/javatest1vnetnymkbi?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14982","StatusCode":"200","x-ms-correlation-request-id":"b730b8ae-68c7-48a1-9736-4727248db506","Date":"Sat, 22 Aug 2015 00:54:14 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","ETag":"W/\"30379f90-07d9-4d51-a283-66b8b6ab25bb\"","x-ms-routing-request-id":"WESTUS:20150822T005414Z:b730b8ae-68c7-48a1-9736-4727248db506","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1062","x-ms-request-id":"4999ed83-74c8-4b8e-9415-7f98e989b855","Body":"{\r\n \"name\": \"javatest1vnetnymkbi\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnxhehd/providers/Microsoft.Network/virtualNetworks/javatest1vnetnymkbi\",\r\n \"etag\": \"W/\\\"30379f90-07d9-4d51-a283-66b8b6ab25bb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e137ae1d-4238-4bc9-8030-3e304b27553f\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"javatest1subnngacis\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnxhehd/providers/Microsoft.Network/virtualNetworks/javatest1vnetnymkbi/subnets/javatest1subnngacis\",\r\n \"etag\": \"W/\\\"30379f90-07d9-4d51-a283-66b8b6ab25bb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnxhehd/providers/Microsoft.Network/networkInterfaces/javatest1nicnfgtme?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-ratelimit-remaining-subscription-writes":"1198","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"b9c5e63b-b7d3-4c21-8237-c1c370d8a2cd","Date":"Sat, 22 Aug 2015 00:54:18 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150822T005418Z:b9c5e63b-b7d3-4c21-8237-c1c370d8a2cd","Expires":"-1","Content-Length":"1311","Azure-AsyncOperation":"https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/a9bdd6c0-b01c-46e3-bc3a-986f2d8931fe?api-version=2015-05-01-preview","x-ms-request-id":"a9bdd6c0-b01c-46e3-bc3a-986f2d8931fe","Body":"{\r\n \"name\": \"javatest1nicnfgtme\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnxhehd/providers/Microsoft.Network/networkInterfaces/javatest1nicnfgtme\",\r\n \"etag\": \"W/\\\"35da6e41-f996-49f4-81ff-ad25e0d7dca8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d1b862e6-ebf6-4926-916a-1bc710fefebd\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"javatest1ipcnyqszc\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnxhehd/providers/Microsoft.Network/networkInterfaces/javatest1nicnfgtme/ipConfigurations/javatest1ipcnyqszc\",\r\n \"etag\": \"W/\\\"35da6e41-f996-49f4-81ff-ad25e0d7dca8\\\"\",\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnxhehd/providers/Microsoft.Network/virtualNetworks/javatest1vnetnymkbi/subnets/javatest1subnngacis\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"x-ms-version":"2015-05-01-preview","User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/a9bdd6c0-b01c-46e3-bc3a-986f2d8931fe?api-version=2015-05-01-preview"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14996","StatusCode":"200","x-ms-correlation-request-id":"2967dca8-3420-4a33-b7f5-bf95b263441b","Date":"Sat, 22 Aug 2015 00:54:19 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150822T005419Z:2967dca8-3420-4a33-b7f5-bf95b263441b","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"29","x-ms-request-id":"485298a7-8997-436c-ae32-1c228757c7be","Body":"{\r\n \"status\": \"Succeeded\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnxhehd/providers/Microsoft.Network/networkInterfaces/javatest1nicnfgtme?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14981","StatusCode":"200","x-ms-correlation-request-id":"d64e2056-77f3-49a8-bcc3-2d76b2621ce4","Date":"Sat, 22 Aug 2015 00:54:19 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","ETag":"W/\"35da6e41-f996-49f4-81ff-ad25e0d7dca8\"","x-ms-routing-request-id":"WESTUS:20150822T005420Z:d64e2056-77f3-49a8-bcc3-2d76b2621ce4","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1311","x-ms-request-id":"19dd090c-f38b-438e-9e69-70557e62ade7","Body":"{\r\n \"name\": \"javatest1nicnfgtme\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnxhehd/providers/Microsoft.Network/networkInterfaces/javatest1nicnfgtme\",\r\n \"etag\": \"W/\\\"35da6e41-f996-49f4-81ff-ad25e0d7dca8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d1b862e6-ebf6-4926-916a-1bc710fefebd\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"javatest1ipcnyqszc\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnxhehd/providers/Microsoft.Network/networkInterfaces/javatest1nicnfgtme/ipConfigurations/javatest1ipcnyqszc\",\r\n \"etag\": \"W/\\\"35da6e41-f996-49f4-81ff-ad25e0d7dca8\\\"\",\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnxhehd/providers/Microsoft.Network/virtualNetworks/javatest1vnetnymkbi/subnets/javatest1subnngacis\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnxhehd/providers/Microsoft.Compute/availabilitySets/javatest1asnsrghr?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","x-ms-ratelimit-remaining-subscription-writes":"1196","Pragma":"no-cache","StatusCode":"200","x-ms-correlation-request-id":"a9dbb14a-0bd8-4067-9f3f-0bd79fe051f5","Date":"Sat, 22 Aug 2015 00:54:25 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150822T005425Z:a9dbb14a-0bd8-4067-9f3f-0bd79fe051f5","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"387","x-ms-request-id":"c0f86726-0608-4d2d-a17f-a705d6f6656f","Body":"{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnxhehd/providers/Microsoft.Compute/availabilitySets/javatest1asnsrghr\",\r\n \"name\": \"javatest1asnsrghr\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnxhehd/providers/Microsoft.Compute/virtualMachines/javatestVMwgscw?api-version=2015-06-15","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","x-ms-ratelimit-remaining-subscription-writes":"1195","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"1cedcae8-ef83-47e1-a9d1-5a7eba484093","Date":"Sat, 22 Aug 2015 00:54:29 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150822T005429Z:1cedcae8-ef83-47e1-a9d1-5a7eba484093","Expires":"-1","Content-Length":"1545","Azure-AsyncOperation":"https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/bcada4f3-7e11-4888-9dd4-a1ed388e6b4c?api-version=2015-06-15","x-ms-request-id":"bcada4f3-7e11-4888-9dd4-a1ed388e6b4c","Body":"{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnxhehd/providers/Microsoft.Compute/availabilitySets/JAVATEST1ASNSRGHR\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"15.04\",\r\n \"version\": \"15.04.201504171\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1sansuane.blob.core.windows.net/javatest1connylnvo/ososvhd.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javatestVMwgscw\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"properties\":{},\"id\":\"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnxhehd/providers/Microsoft.Network/networkInterfaces/javatest1nicnfgtme\"}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnxhehd/providers/Microsoft.Compute/virtualMachines/javatestVMwgscw\",\r\n \"name\": \"javatestVMwgscw\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/bcada4f3-7e11-4888-9dd4-a1ed388e6b4c?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14980","StatusCode":"200","x-ms-correlation-request-id":"0f96b86d-48c8-4717-8dd0-10ee2dc6f494","Date":"Sat, 22 Aug 2015 00:54:30 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150822T005430Z:0f96b86d-48c8-4717-8dd0-10ee2dc6f494","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"2af7f89d-0b7d-4fc2-8aab-4f5c6625316a","Body":"{\r\n \"operationId\": \"bcada4f3-7e11-4888-9dd4-a1ed388e6b4c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-22T00:54:27.2098245+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnxhehd/providers/Microsoft.Compute/virtualMachines/javatestVMwgscw?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14979","StatusCode":"200","x-ms-correlation-request-id":"2b7c6467-7a23-4b2a-a3a4-0a0f0b5834cc","Date":"Sat, 22 Aug 2015 00:54:30 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150822T005430Z:2b7c6467-7a23-4b2a-a3a4-0a0f0b5834cc","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1545","x-ms-request-id":"21486035-5a97-4f4c-81a5-511c6aacf112","Body":"{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnxhehd/providers/Microsoft.Compute/availabilitySets/JAVATEST1ASNSRGHR\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"15.04\",\r\n \"version\": \"15.04.201504171\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1sansuane.blob.core.windows.net/javatest1connylnvo/ososvhd.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javatestVMwgscw\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"properties\":{},\"id\":\"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnxhehd/providers/Microsoft.Network/networkInterfaces/javatest1nicnfgtme\"}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnxhehd/providers/Microsoft.Compute/virtualMachines/javatestVMwgscw\",\r\n \"name\": \"javatestVMwgscw\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"POST","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnxhehd/providers/Microsoft.Compute/virtualMachines/javatestVMwgscw/start?api-version=2015-06-15"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","x-ms-ratelimit-remaining-subscription-writes":"1194","Pragma":"no-cache","StatusCode":"202","x-ms-correlation-request-id":"da7c5cac-97b2-4984-a467-4bc9fef4eec6","Date":"Sat, 22 Aug 2015 00:54:30 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150822T005431Z:da7c5cac-97b2-4984-a467-4bc9fef4eec6","Expires":"-1","Content-Length":"0","Azure-AsyncOperation":"https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/b8e0739e-b128-426b-b0b7-cb0eb03016ae?api-version=2015-06-15","x-ms-request-id":"b8e0739e-b128-426b-b0b7-cb0eb03016ae","Body":"","Location":"https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/b8e0739e-b128-426b-b0b7-cb0eb03016ae?monitor=true&api-version=2015-06-15"},{"User-Agent":"Azure-SDK-For-Java","Method":"POST","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnxhehd/providers/Microsoft.Compute/virtualMachines/javatestVMwgscw/restart?api-version=2015-06-15"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","x-ms-ratelimit-remaining-subscription-writes":"1193","Pragma":"no-cache","StatusCode":"202","x-ms-correlation-request-id":"184b63da-fea9-436d-be92-4874b5a0f153","Date":"Sat, 22 Aug 2015 00:54:31 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150822T005431Z:184b63da-fea9-436d-be92-4874b5a0f153","Expires":"-1","Content-Length":"0","Azure-AsyncOperation":"https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/847f2cf3-0be3-4124-81a8-ec1f010b3d4e?api-version=2015-06-15","x-ms-request-id":"847f2cf3-0be3-4124-81a8-ec1f010b3d4e","Body":"","Location":"https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/847f2cf3-0be3-4124-81a8-ec1f010b3d4e?monitor=true&api-version=2015-06-15"},{"User-Agent":"Azure-SDK-For-Java","Method":"POST","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnxhehd/providers/Microsoft.Compute/virtualMachines/javatestVMwgscw/powerOff?api-version=2015-06-15"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","x-ms-ratelimit-remaining-subscription-writes":"1192","Pragma":"no-cache","StatusCode":"202","x-ms-correlation-request-id":"69b53b5d-65f3-4d09-a8a8-945b9305a082","Date":"Sat, 22 Aug 2015 00:54:31 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150822T005431Z:69b53b5d-65f3-4d09-a8a8-945b9305a082","Expires":"-1","Content-Length":"0","Azure-AsyncOperation":"https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/67003e82-4fac-4963-b733-b26acbfb2449?api-version=2015-06-15","x-ms-request-id":"67003e82-4fac-4963-b733-b26acbfb2449","Body":"","Location":"https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/67003e82-4fac-4963-b733-b26acbfb2449?monitor=true&api-version=2015-06-15"},{"User-Agent":"Azure-SDK-For-Java","Method":"POST","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnxhehd/providers/Microsoft.Compute/virtualMachines/javatestVMwgscw/powerOff?api-version=2015-06-15"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","x-ms-ratelimit-remaining-subscription-writes":"1196","Pragma":"no-cache","StatusCode":"202","x-ms-correlation-request-id":"72be8c3a-fa71-42c1-abba-e81e46a95adc","Date":"Sat, 22 Aug 2015 00:54:32 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150822T005432Z:72be8c3a-fa71-42c1-abba-e81e46a95adc","Expires":"-1","Content-Length":"0","Azure-AsyncOperation":"https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/f529f6e1-7dea-4bf5-8e9b-7295e160cc99?api-version=2015-06-15","x-ms-request-id":"f529f6e1-7dea-4bf5-8e9b-7295e160cc99","Body":"","Location":"https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/f529f6e1-7dea-4bf5-8e9b-7295e160cc99?monitor=true&api-version=2015-06-15"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/f529f6e1-7dea-4bf5-8e9b-7295e160cc99?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14996","StatusCode":"200","x-ms-correlation-request-id":"7414ba3e-2503-4f1d-ad50-fed1d363152b","Date":"Sat, 22 Aug 2015 00:54:33 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150822T005433Z:7414ba3e-2503-4f1d-ad50-fed1d363152b","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"c60d42d7-dbc1-419e-8302-aadb7bf28ccf","Body":"{\r\n \"operationId\": \"f529f6e1-7dea-4bf5-8e9b-7295e160cc99\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-22T00:54:32.2879495+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/f529f6e1-7dea-4bf5-8e9b-7295e160cc99?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14995","StatusCode":"200","x-ms-correlation-request-id":"728f48a5-1422-43e2-a8aa-5d083b8beb62","Date":"Sat, 22 Aug 2015 00:55:04 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150822T005504Z:728f48a5-1422-43e2-a8aa-5d083b8beb62","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"191","x-ms-request-id":"b1ea7812-67a6-4f8d-a287-e41ac1698222","Body":"{\r\n \"operationId\": \"f529f6e1-7dea-4bf5-8e9b-7295e160cc99\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-08-22T00:54:32.2879495+00:00\",\r\n \"endTime\": \"2015-08-22T00:54:51.2097469+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"POST","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnxhehd/providers/Microsoft.Compute/virtualMachines/javatestVMwgscw/generalize?api-version=2015-06-15","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","x-ms-ratelimit-remaining-subscription-writes":"1191","Pragma":"no-cache","StatusCode":"200","x-ms-correlation-request-id":"5da00135-6594-4620-bdab-501675784389","Date":"Sat, 22 Aug 2015 00:56:05 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150822T005605Z:5da00135-6594-4620-bdab-501675784389","Expires":"-1","Content-Length":"0","x-ms-request-id":"307f8710-4a30-4b3c-8c51-d562db8b9f95","Body":""},{"User-Agent":"Azure-SDK-For-Java","Method":"POST","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnxhehd/providers/Microsoft.Compute/virtualMachines/javatestVMwgscw/capture?api-version=2015-06-15","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","x-ms-ratelimit-remaining-subscription-writes":"1196","Pragma":"no-cache","StatusCode":"202","x-ms-correlation-request-id":"f5d87411-dce0-4002-bfe6-ef184d97c54f","Date":"Sat, 22 Aug 2015 00:56:07 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150822T005607Z:f5d87411-dce0-4002-bfe6-ef184d97c54f","Expires":"-1","Content-Length":"0","Azure-AsyncOperation":"https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/eed31f6e-952d-4f24-8b30-3abcd71f7727?api-version=2015-06-15","x-ms-request-id":"eed31f6e-952d-4f24-8b30-3abcd71f7727","Body":"","Location":"https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/eed31f6e-952d-4f24-8b30-3abcd71f7727?monitor=true&api-version=2015-06-15"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/eed31f6e-952d-4f24-8b30-3abcd71f7727?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14948","StatusCode":"200","x-ms-correlation-request-id":"7218a7f0-2bad-44ce-b3ed-4f6a5fdd6d00","Date":"Sat, 22 Aug 2015 00:56:08 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150822T005608Z:7218a7f0-2bad-44ce-b3ed-4f6a5fdd6d00","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"2379","x-ms-request-id":"7189d410-eb79-4ee3-8be2-d0e592a64711","Body":"{\r\n \"operationId\": \"eed31f6e-952d-4f24-8b30-3abcd71f7727\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-08-22T00:56:06.4285544+00:00\",\r\n \"endTime\": \"2015-08-22T00:56:06.9598037+00:00\",\r\n \"properties\": {\r\n \"output\": {\r\n \"$schema\": \"http://schema.management.azure.com/schemas/2014-04-01-preview/VM_IP.json\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"vmName\": {\r\n \"type\": \"string\"\r\n },\r\n \"vmSize\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"Standard_A0\"\r\n },\r\n \"adminUserName\": {\r\n \"type\": \"string\"\r\n },\r\n \"adminPassword\": {\r\n \"type\": \"securestring\"\r\n },\r\n \"networkInterfaceId\": {\r\n \"type\": \"string\"\r\n },\r\n \"availabilitySetId\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnxhehd/providers/Microsoft.Compute/availabilitySets/JAVATEST1ASNSRGHR\"\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"apiVersion\": \"2015-06-15\",\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"[parameters('availabilitySetId')]\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"[parameters('vmSize')]\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vhdnamepre-osDisk.4eea3841-c940-4a70-af10-a0287ac1ba70.vhd\",\r\n \"createOption\": \"FromImage\",\r\n \"image\": {\r\n \"uri\": \"https://javatest1sansuane.blob.core.windows.net/system/Microsoft.Compute/Images/javatestdestcontaodf/vhdnamepre-osDisk.4eea3841-c940-4a70-af10-a0287ac1ba70.vhd\"\r\n },\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1sansuane.blob.core.windows.net/vmcontainer4c587088-624b-4c96-95b0-0b9a71ad154a/osDisk.4c587088-624b-4c96-95b0-0b9a71ad154a.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"[parameters('vmName')]\",\r\n \"adminUsername\": \"[parameters('adminUsername')]\",\r\n \"adminPassword\": \"[parameters('adminPassword')]\"\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"[parameters('networkInterfaceId')]\"}]},\r\n \"provisioningState\": 0\r\n },\r\n \"name\": \"[parameters('vmName')]\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\"\r\n }\r\n ]\r\n}\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"POST","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnxhehd/providers/Microsoft.Compute/virtualMachines/javatestVMwgscw/deallocate?api-version=2015-06-15"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","x-ms-ratelimit-remaining-subscription-writes":"1190","Pragma":"no-cache","StatusCode":"202","x-ms-correlation-request-id":"7997d6dc-b29b-4712-8d17-5bcfe5a142bb","Date":"Sat, 22 Aug 2015 00:56:08 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150822T005608Z:7997d6dc-b29b-4712-8d17-5bcfe5a142bb","Expires":"-1","Content-Length":"0","Azure-AsyncOperation":"https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/58de6ecd-e602-41e9-a505-cd0c7bb53602?api-version=2015-06-15","x-ms-request-id":"58de6ecd-e602-41e9-a505-cd0c7bb53602","Body":"","Location":"https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/58de6ecd-e602-41e9-a505-cd0c7bb53602?monitor=true&api-version=2015-06-15"},{"User-Agent":"Azure-SDK-For-Java","Method":"DELETE","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnxhehd/providers/Microsoft.Compute/virtualMachines/javatestVMwgscw?api-version=2015-06-15","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","x-ms-ratelimit-remaining-subscription-writes":"1195","Pragma":"no-cache","StatusCode":"202","x-ms-correlation-request-id":"60b656b4-1354-4797-8dec-a0689f7837a5","Date":"Sat, 22 Aug 2015 00:56:10 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150822T005611Z:60b656b4-1354-4797-8dec-a0689f7837a5","Expires":"-1","Content-Length":"0","Azure-AsyncOperation":"https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/9a837e16-dc46-4d9e-9b80-3fe998bc9fa4?api-version=2015-06-15","x-ms-request-id":"9a837e16-dc46-4d9e-9b80-3fe998bc9fa4","Body":"","Location":"https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/9a837e16-dc46-4d9e-9b80-3fe998bc9fa4?monitor=true&api-version=2015-06-15"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/9a837e16-dc46-4d9e-9b80-3fe998bc9fa4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14994","StatusCode":"200","x-ms-correlation-request-id":"3cb9357c-c33e-4ab2-a10b-d672d7b9b0b1","Date":"Sat, 22 Aug 2015 00:56:11 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150822T005612Z:3cb9357c-c33e-4ab2-a10b-d672d7b9b0b1","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"38d6214e-8f92-4c28-86ee-17d36e0d0383","Body":"{\r\n \"operationId\": \"9a837e16-dc46-4d9e-9b80-3fe998bc9fa4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-22T00:56:09.0222466+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/9a837e16-dc46-4d9e-9b80-3fe998bc9fa4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14993","StatusCode":"200","x-ms-correlation-request-id":"720b7a02-84ce-4128-b5cf-eafe41cac720","Date":"Sat, 22 Aug 2015 00:56:42 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150822T005643Z:720b7a02-84ce-4128-b5cf-eafe41cac720","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"9721add1-8913-480e-859f-1562cf47cf36","Body":"{\r\n \"operationId\": \"9a837e16-dc46-4d9e-9b80-3fe998bc9fa4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-22T00:56:09.0222466+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/9a837e16-dc46-4d9e-9b80-3fe998bc9fa4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14992","StatusCode":"200","x-ms-correlation-request-id":"3ce13afa-0bde-4c6a-98bb-5c0182a4b652","Date":"Sat, 22 Aug 2015 00:56:53 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150822T005654Z:3ce13afa-0bde-4c6a-98bb-5c0182a4b652","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"d4f18669-9375-4643-9c74-a97b20c2a492","Body":"{\r\n \"operationId\": \"9a837e16-dc46-4d9e-9b80-3fe998bc9fa4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-22T00:56:09.0222466+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/9a837e16-dc46-4d9e-9b80-3fe998bc9fa4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14991","StatusCode":"200","x-ms-correlation-request-id":"315d78e1-3fef-4cd1-9edb-28cc693dbad0","Date":"Sat, 22 Aug 2015 00:57:03 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150822T005704Z:315d78e1-3fef-4cd1-9edb-28cc693dbad0","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"6b1187ab-dce7-4619-af29-4ff797f04c8c","Body":"{\r\n \"operationId\": \"9a837e16-dc46-4d9e-9b80-3fe998bc9fa4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-22T00:56:09.0222466+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/9a837e16-dc46-4d9e-9b80-3fe998bc9fa4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14990","StatusCode":"200","x-ms-correlation-request-id":"1879a67a-5644-456e-ae63-641c18f5befa","Date":"Sat, 22 Aug 2015 00:57:15 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150822T005715Z:1879a67a-5644-456e-ae63-641c18f5befa","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"35c2f1b3-bf31-4d33-8f37-098e9e6fcf5b","Body":"{\r\n \"operationId\": \"9a837e16-dc46-4d9e-9b80-3fe998bc9fa4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-22T00:56:09.0222466+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/9a837e16-dc46-4d9e-9b80-3fe998bc9fa4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14989","StatusCode":"200","x-ms-correlation-request-id":"fe98296c-c6c8-41cb-9bcc-6bc953ed2806","Date":"Sat, 22 Aug 2015 00:57:25 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150822T005726Z:fe98296c-c6c8-41cb-9bcc-6bc953ed2806","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"73d813e1-7cd7-47e0-9737-709bd1800260","Body":"{\r\n \"operationId\": \"9a837e16-dc46-4d9e-9b80-3fe998bc9fa4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-22T00:56:09.0222466+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/9a837e16-dc46-4d9e-9b80-3fe998bc9fa4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14988","StatusCode":"200","x-ms-correlation-request-id":"7a2922f6-8154-451c-b8f6-8ae7848615b7","Date":"Sat, 22 Aug 2015 00:57:37 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150822T005737Z:7a2922f6-8154-451c-b8f6-8ae7848615b7","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"5c90caef-f781-4b63-a907-40daf959e48b","Body":"{\r\n \"operationId\": \"9a837e16-dc46-4d9e-9b80-3fe998bc9fa4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-22T00:56:09.0222466+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/9a837e16-dc46-4d9e-9b80-3fe998bc9fa4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14987","StatusCode":"200","x-ms-correlation-request-id":"8b36da91-6dbb-4824-b728-f72d2d1a5b23","Date":"Sat, 22 Aug 2015 00:57:48 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150822T005748Z:8b36da91-6dbb-4824-b728-f72d2d1a5b23","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"2c9f9fe1-b1bf-44e8-b50f-acf1d88ba8d0","Body":"{\r\n \"operationId\": \"9a837e16-dc46-4d9e-9b80-3fe998bc9fa4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-22T00:56:09.0222466+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/9a837e16-dc46-4d9e-9b80-3fe998bc9fa4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14986","StatusCode":"200","x-ms-correlation-request-id":"99439151-3f39-4b12-a5a3-484239565151","Date":"Sat, 22 Aug 2015 00:57:59 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150822T005759Z:99439151-3f39-4b12-a5a3-484239565151","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"c43d01ec-0f82-41f7-b1a3-3cf9c83c2c8d","Body":"{\r\n \"operationId\": \"9a837e16-dc46-4d9e-9b80-3fe998bc9fa4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-22T00:56:09.0222466+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/9a837e16-dc46-4d9e-9b80-3fe998bc9fa4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14985","StatusCode":"200","x-ms-correlation-request-id":"1eedfebd-9857-480c-bb05-45fc21812143","Date":"Sat, 22 Aug 2015 00:58:09 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150822T005810Z:1eedfebd-9857-480c-bb05-45fc21812143","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"1eb522af-8faa-4557-976e-fa7d459d6762","Body":"{\r\n \"operationId\": \"9a837e16-dc46-4d9e-9b80-3fe998bc9fa4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-22T00:56:09.0222466+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/9a837e16-dc46-4d9e-9b80-3fe998bc9fa4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14984","StatusCode":"200","x-ms-correlation-request-id":"1693cdb1-1b76-444d-b177-4c26e3c3737b","Date":"Sat, 22 Aug 2015 00:58:20 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150822T005821Z:1693cdb1-1b76-444d-b177-4c26e3c3737b","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"be80d632-1a84-4e67-a9af-19349c3b0184","Body":"{\r\n \"operationId\": \"9a837e16-dc46-4d9e-9b80-3fe998bc9fa4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-22T00:56:09.0222466+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/9a837e16-dc46-4d9e-9b80-3fe998bc9fa4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14983","StatusCode":"200","x-ms-correlation-request-id":"a8fd7f19-83a3-47b2-bed2-c63ed906c80a","Date":"Sat, 22 Aug 2015 00:58:31 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150822T005831Z:a8fd7f19-83a3-47b2-bed2-c63ed906c80a","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"edb267ae-e76d-4a50-9496-a94b4a8d1ba7","Body":"{\r\n \"operationId\": \"9a837e16-dc46-4d9e-9b80-3fe998bc9fa4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-22T00:56:09.0222466+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/9a837e16-dc46-4d9e-9b80-3fe998bc9fa4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14982","StatusCode":"200","x-ms-correlation-request-id":"a617e249-54f7-4524-8d14-dc2d7a31d62d","Date":"Sat, 22 Aug 2015 00:58:42 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150822T005842Z:a617e249-54f7-4524-8d14-dc2d7a31d62d","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"191","x-ms-request-id":"0268bbd9-06e8-405c-94c7-26a9a042bd79","Body":"{\r\n \"operationId\": \"9a837e16-dc46-4d9e-9b80-3fe998bc9fa4\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-08-22T00:56:09.0222466+00:00\",\r\n \"endTime\": \"2015-08-22T00:58:38.4910544+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"}] \ No newline at end of file +[{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/SouthEastAsia/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.04/versions?api-version=2015-06-15&$top=1","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14919","StatusCode":"200","x-ms-correlation-request-id":"a49c854f-084a-4d6e-8ddf-636fb1b04f68","Date":"Mon, 19 Oct 2015 20:17:38 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T201739Z:a49c854f-084a-4d6e-8ddf-636fb1b04f68","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"296","x-ms-request-id":"900d66d3-df6a-4553-8c6a-3d889e04b9a5","Body":"[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"15.04.201504171\",\r\n \"id\": \"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04/Versions/15.04.201504171\"\r\n }\r\n]","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/javatestrgnwlcqr?api-version=2014-04-01-preview","Content-Type":"application/json; charset=utf-8"},{"x-ms-ratelimit-remaining-subscription-writes":"1185","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"7dec24f2-0869-4b0f-93fa-8716546d1ff3","Date":"Mon, 19 Oct 2015 20:17:41 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T201742Z:7dec24f2-0869-4b0f-93fa-8716546d1ff3","Expires":"-1","Content-Length":"192","x-ms-request-id":"7dec24f2-0869-4b0f-93fa-8716546d1ff3","Body":"{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnwlcqr\",\"name\":\"javatestrgnwlcqr\",\"location\":\"southeastasia\",\"properties\":{\"provisioningState\":\"Succeeded\"}}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnwlcqr/providers/Microsoft.Storage/storageAccounts/javatest1sancfhlg?api-version=2015-06-15","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-ratelimit-remaining-subscription-writes":"1186","Pragma":"no-cache","StatusCode":"202","x-ms-correlation-request-id":"eb01e45d-a58d-4d0f-bf8d-1657ad80e6ce","Date":"Mon, 19 Oct 2015 20:17:43 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"25","x-ms-routing-request-id":"WESTUS:20151019T201744Z:eb01e45d-a58d-4d0f-bf8d-1657ad80e6ce","Expires":"-1","Content-Length":"0","x-ms-request-id":"eb01e45d-a58d-4d0f-bf8d-1657ad80e6ce","Body":"","Location":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/operations/31a5e13f-735b-464a-a319-206050897cbc?monitor=true&api-version=2015-06-15"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/operations/31a5e13f-735b-464a-a319-206050897cbc?monitor=true&api-version=2015-06-15"},{"Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14961","StatusCode":"202","x-ms-correlation-request-id":"07a08e1a-c376-4fb3-8b64-7d6444ae08c1","Date":"Mon, 19 Oct 2015 20:17:43 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"25","x-ms-routing-request-id":"WESTUS:20151019T201744Z:07a08e1a-c376-4fb3-8b64-7d6444ae08c1","Expires":"-1","Content-Length":"0","x-ms-request-id":"07a08e1a-c376-4fb3-8b64-7d6444ae08c1","Body":"","Location":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/operations/31a5e13f-735b-464a-a319-206050897cbc?monitor=true&api-version=2015-06-15"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/operations/31a5e13f-735b-464a-a319-206050897cbc?monitor=true&api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14960","StatusCode":"200","x-ms-correlation-request-id":"f50b2a01-4fef-4fba-8702-d60f28ed8c84","Date":"Mon, 19 Oct 2015 20:18:08 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T201809Z:f50b2a01-4fef-4fba-8702-d60f28ed8c84","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"72","x-ms-request-id":"f50b2a01-4fef-4fba-8702-d60f28ed8c84","Body":"{\"location\":\"SouthEastAsia\",\"properties\":{\"accountType\":\"Standard_LRS\"}}","Content-Type":"application/json"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnwlcqr/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14979","StatusCode":"200","x-ms-correlation-request-id":"a65e7bf2-d1a2-4b59-8d2d-9cf7e87df455","Date":"Mon, 19 Oct 2015 20:18:12 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T201813Z:a65e7bf2-d1a2-4b59-8d2d-9cf7e87df455","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"717","x-ms-request-id":"a65e7bf2-d1a2-4b59-8d2d-9cf7e87df455","Body":"{\"value\":[{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnwlcqr/providers/Microsoft.Storage/storageAccounts/javatest1sancfhlg\",\"location\":\"southeastasia\",\"name\":\"javatest1sancfhlg\",\"properties\":{\"accountType\":\"Standard_LRS\",\"creationTime\":\"2015-10-19T20:17:43.8696508Z\",\"primaryEndpoints\":{\"blob\":\"https://javatest1sancfhlg.blob.core.windows.net/\",\"file\":\"https://javatest1sancfhlg.file.core.windows.net/\",\"queue\":\"https://javatest1sancfhlg.queue.core.windows.net/\",\"table\":\"https://javatest1sancfhlg.table.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}]}\n","Content-Type":"application/json"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnwlcqr/providers/Microsoft.Network/virtualnetworks/javatest1vnetnhinoe?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-ratelimit-remaining-subscription-writes":"1189","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"8cd63369-b3c7-455e-aadd-6861c6fb42fa","Date":"Mon, 19 Oct 2015 20:18:15 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"10","x-ms-routing-request-id":"WESTUS:20151019T201816Z:8cd63369-b3c7-455e-aadd-6861c6fb42fa","Expires":"-1","Content-Length":"1108","Azure-AsyncOperation":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/southeastasia/operations/270f450e-b86f-4f09-9967-b67aa2a2aa15?api-version=2015-05-01-preview","x-ms-request-id":"270f450e-b86f-4f09-9967-b67aa2a2aa15","Body":"{\r\n \"name\": \"javatest1vnetnhinoe\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnwlcqr/providers/Microsoft.Network/virtualNetworks/javatest1vnetnhinoe\",\r\n \"etag\": \"W/\\\"4e11509b-231c-4e86-a774-5584e24d38ac\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"c3fc1c3a-11c5-4dac-af7d-140ab6809a75\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"javatest1subnnipjzf\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnwlcqr/providers/Microsoft.Network/virtualNetworks/javatest1vnetnhinoe/subnets/javatest1subnnipjzf\",\r\n \"etag\": \"W/\\\"4e11509b-231c-4e86-a774-5584e24d38ac\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"},{"x-ms-version":"2015-05-01-preview","User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/southeastasia/operations/270f450e-b86f-4f09-9967-b67aa2a2aa15?api-version=2015-05-01-preview"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14980","StatusCode":"200","x-ms-correlation-request-id":"feb7f33d-6eb4-4099-b0ca-8626e3acb8e2","Date":"Mon, 19 Oct 2015 20:18:16 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T201817Z:feb7f33d-6eb4-4099-b0ca-8626e3acb8e2","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"29","x-ms-request-id":"fc373405-ed2e-49fd-b133-796eec8f059b","Body":"{\r\n \"status\": \"Succeeded\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnwlcqr/providers/Microsoft.Network/virtualnetworks/javatest1vnetnhinoe?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14959","StatusCode":"200","x-ms-correlation-request-id":"bee0c0f0-6621-4c1b-97d6-f62f23bfad12","Date":"Mon, 19 Oct 2015 20:18:18 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","ETag":"W/\"61df18d1-fac9-4c34-a31d-93f7e7b31d38\"","x-ms-routing-request-id":"WESTUS:20151019T201818Z:bee0c0f0-6621-4c1b-97d6-f62f23bfad12","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1110","x-ms-request-id":"69951d1e-1be1-4cc2-a7f2-3401185f9ba0","Body":"{\r\n \"name\": \"javatest1vnetnhinoe\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnwlcqr/providers/Microsoft.Network/virtualNetworks/javatest1vnetnhinoe\",\r\n \"etag\": \"W/\\\"61df18d1-fac9-4c34-a31d-93f7e7b31d38\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c3fc1c3a-11c5-4dac-af7d-140ab6809a75\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"javatest1subnnipjzf\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnwlcqr/providers/Microsoft.Network/virtualNetworks/javatest1vnetnhinoe/subnets/javatest1subnnipjzf\",\r\n \"etag\": \"W/\\\"61df18d1-fac9-4c34-a31d-93f7e7b31d38\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnwlcqr/providers/Microsoft.Network/networkInterfaces/javatest1nicnesoxk?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-ratelimit-remaining-subscription-writes":"1181","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"ed6aafe3-9350-4294-aa29-430db98e02a4","Date":"Mon, 19 Oct 2015 20:18:22 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T201822Z:ed6aafe3-9350-4294-aa29-430db98e02a4","Expires":"-1","Content-Length":"1361","Azure-AsyncOperation":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/southeastasia/operations/14e2a65c-4629-4dc3-9e80-bbfb40f2ce5e?api-version=2015-05-01-preview","x-ms-request-id":"14e2a65c-4629-4dc3-9e80-bbfb40f2ce5e","Body":"{\r\n \"name\": \"javatest1nicnesoxk\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnwlcqr/providers/Microsoft.Network/networkInterfaces/javatest1nicnesoxk\",\r\n \"etag\": \"W/\\\"809b9661-e4bf-4056-87da-90ecfec57a9a\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5ddc028a-f66d-410f-ba4e-9446ae562a9f\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"javatest1ipcnqpdym\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnwlcqr/providers/Microsoft.Network/networkInterfaces/javatest1nicnesoxk/ipConfigurations/javatest1ipcnqpdym\",\r\n \"etag\": \"W/\\\"809b9661-e4bf-4056-87da-90ecfec57a9a\\\"\",\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/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnwlcqr/providers/Microsoft.Network/virtualNetworks/javatest1vnetnhinoe/subnets/javatest1subnnipjzf\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"},{"x-ms-version":"2015-05-01-preview","User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/southeastasia/operations/14e2a65c-4629-4dc3-9e80-bbfb40f2ce5e?api-version=2015-05-01-preview"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14984","StatusCode":"200","x-ms-correlation-request-id":"54e1893c-fd9a-426c-aefc-ae1254c9a036","Date":"Mon, 19 Oct 2015 20:18:22 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T201823Z:54e1893c-fd9a-426c-aefc-ae1254c9a036","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"29","x-ms-request-id":"84ff96d6-fd9c-4b3a-adaa-1e50f4ce4205","Body":"{\r\n \"status\": \"Succeeded\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnwlcqr/providers/Microsoft.Network/networkInterfaces/javatest1nicnesoxk?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14958","StatusCode":"200","x-ms-correlation-request-id":"0d786405-ba1c-4536-82fa-5b4382dfb54a","Date":"Mon, 19 Oct 2015 20:18:24 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","ETag":"W/\"809b9661-e4bf-4056-87da-90ecfec57a9a\"","x-ms-routing-request-id":"WESTUS:20151019T201824Z:0d786405-ba1c-4536-82fa-5b4382dfb54a","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1361","x-ms-request-id":"731a9f87-063e-4bc9-9b37-f6c278cbed23","Body":"{\r\n \"name\": \"javatest1nicnesoxk\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnwlcqr/providers/Microsoft.Network/networkInterfaces/javatest1nicnesoxk\",\r\n \"etag\": \"W/\\\"809b9661-e4bf-4056-87da-90ecfec57a9a\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5ddc028a-f66d-410f-ba4e-9446ae562a9f\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"javatest1ipcnqpdym\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnwlcqr/providers/Microsoft.Network/networkInterfaces/javatest1nicnesoxk/ipConfigurations/javatest1ipcnqpdym\",\r\n \"etag\": \"W/\\\"809b9661-e4bf-4056-87da-90ecfec57a9a\\\"\",\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/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnwlcqr/providers/Microsoft.Network/virtualNetworks/javatest1vnetnhinoe/subnets/javatest1subnnipjzf\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnwlcqr/providers/Microsoft.Compute/availabilitySets/javatest1asnbcnub?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","x-ms-ratelimit-remaining-subscription-writes":"1184","Pragma":"no-cache","StatusCode":"200","x-ms-correlation-request-id":"958213de-b880-44cb-a26b-84c6e55d0134","Date":"Mon, 19 Oct 2015 20:18:27 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T201828Z:958213de-b880-44cb-a26b-84c6e55d0134","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"387","x-ms-request-id":"9a3fec6b-1a99-458d-b9af-4284509ff0d7","Body":"{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnwlcqr/providers/Microsoft.Compute/availabilitySets/javatest1asnbcnub\",\r\n \"name\": \"javatest1asnbcnub\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnwlcqr/providers/Microsoft.Compute/virtualMachines/javatestVMgxztj?api-version=2015-06-15","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","x-ms-ratelimit-remaining-subscription-writes":"1183","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"17671de7-a531-4bac-96f6-ee212f567c49","Date":"Mon, 19 Oct 2015 20:18:31 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T201832Z:17671de7-a531-4bac-96f6-ee212f567c49","Expires":"-1","Content-Length":"1598","Azure-AsyncOperation":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/52e1de29-9c15-4ff7-9b26-85d87ce8cba5?api-version=2015-06-15","x-ms-request-id":"52e1de29-9c15-4ff7-9b26-85d87ce8cba5","Body":"{\r\n \"properties\": {\r\n \"vmId\": \"d3abab81-523e-4f9e-a3ed-fe158fa7e9e4\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnwlcqr/providers/Microsoft.Compute/availabilitySets/JAVATEST1ASNBCNUB\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"15.04\",\r\n \"version\": \"15.04.201504171\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1sancfhlg.blob.core.windows.net/javatest1connuhydu/ososvhd.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javatestVMgxztj\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"properties\":{},\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnwlcqr/providers/Microsoft.Network/networkInterfaces/javatest1nicnesoxk\"}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnwlcqr/providers/Microsoft.Compute/virtualMachines/javatestVMgxztj\",\r\n \"name\": \"javatestVMgxztj\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/52e1de29-9c15-4ff7-9b26-85d87ce8cba5?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14918","StatusCode":"200","x-ms-correlation-request-id":"bb301e20-66c8-49a3-b179-a1cff9f2526d","Date":"Mon, 19 Oct 2015 20:18:32 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T201833Z:bb301e20-66c8-49a3-b179-a1cff9f2526d","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"9aee1114-b898-43df-95c3-e845289c8dda","Body":"{\r\n \"operationId\": \"52e1de29-9c15-4ff7-9b26-85d87ce8cba5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:18:30.5697617+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnwlcqr/providers/Microsoft.Compute/virtualMachines/javatestVMgxztj?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14917","StatusCode":"200","x-ms-correlation-request-id":"0c71d45b-85f6-4274-ae5a-1faa75bf985e","Date":"Mon, 19 Oct 2015 20:18:32 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T201833Z:0c71d45b-85f6-4274-ae5a-1faa75bf985e","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1598","x-ms-request-id":"c6c96a08-a31a-46cc-ad31-19d8f637db45","Body":"{\r\n \"properties\": {\r\n \"vmId\": \"d3abab81-523e-4f9e-a3ed-fe158fa7e9e4\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnwlcqr/providers/Microsoft.Compute/availabilitySets/JAVATEST1ASNBCNUB\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"15.04\",\r\n \"version\": \"15.04.201504171\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1sancfhlg.blob.core.windows.net/javatest1connuhydu/ososvhd.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javatestVMgxztj\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"properties\":{},\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnwlcqr/providers/Microsoft.Network/networkInterfaces/javatest1nicnesoxk\"}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnwlcqr/providers/Microsoft.Compute/virtualMachines/javatestVMgxztj\",\r\n \"name\": \"javatestVMgxztj\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"POST","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnwlcqr/providers/Microsoft.Compute/virtualMachines/javatestVMgxztj/start?api-version=2015-06-15"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","x-ms-ratelimit-remaining-subscription-writes":"1182","Pragma":"no-cache","StatusCode":"202","x-ms-correlation-request-id":"e418c577-85aa-4c12-9d65-82b6833c98b7","Date":"Mon, 19 Oct 2015 20:18:32 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T201833Z:e418c577-85aa-4c12-9d65-82b6833c98b7","Expires":"-1","Content-Length":"0","Azure-AsyncOperation":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/709b1b22-cc18-4c01-a8d7-46e0225bc94a?api-version=2015-06-15","x-ms-request-id":"709b1b22-cc18-4c01-a8d7-46e0225bc94a","Body":"","Location":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/709b1b22-cc18-4c01-a8d7-46e0225bc94a?monitor=true&api-version=2015-06-15"},{"User-Agent":"Azure-SDK-For-Java","Method":"POST","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnwlcqr/providers/Microsoft.Compute/virtualMachines/javatestVMgxztj/restart?api-version=2015-06-15"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","x-ms-ratelimit-remaining-subscription-writes":"1181","Pragma":"no-cache","StatusCode":"202","x-ms-correlation-request-id":"6f90dbab-7723-4551-bee0-80e1ce44b179","Date":"Mon, 19 Oct 2015 20:18:33 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T201834Z:6f90dbab-7723-4551-bee0-80e1ce44b179","Expires":"-1","Content-Length":"0","Azure-AsyncOperation":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/4dcf9e2c-6f1a-4277-bf13-93ae46f4800d?api-version=2015-06-15","x-ms-request-id":"4dcf9e2c-6f1a-4277-bf13-93ae46f4800d","Body":"","Location":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/4dcf9e2c-6f1a-4277-bf13-93ae46f4800d?monitor=true&api-version=2015-06-15"},{"User-Agent":"Azure-SDK-For-Java","Method":"POST","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnwlcqr/providers/Microsoft.Compute/virtualMachines/javatestVMgxztj/powerOff?api-version=2015-06-15"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","x-ms-ratelimit-remaining-subscription-writes":"1180","Pragma":"no-cache","StatusCode":"202","x-ms-correlation-request-id":"496ed1e8-36ce-43ff-bd67-fa2e86c20765","Date":"Mon, 19 Oct 2015 20:18:33 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T201834Z:496ed1e8-36ce-43ff-bd67-fa2e86c20765","Expires":"-1","Content-Length":"0","Azure-AsyncOperation":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/fc324d16-1933-465d-9c93-1cc170175a74?api-version=2015-06-15","x-ms-request-id":"fc324d16-1933-465d-9c93-1cc170175a74","Body":"","Location":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/fc324d16-1933-465d-9c93-1cc170175a74?monitor=true&api-version=2015-06-15"},{"User-Agent":"Azure-SDK-For-Java","Method":"POST","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnwlcqr/providers/Microsoft.Compute/virtualMachines/javatestVMgxztj/powerOff?api-version=2015-06-15"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","x-ms-ratelimit-remaining-subscription-writes":"1188","Pragma":"no-cache","StatusCode":"202","x-ms-correlation-request-id":"d02bef52-d76e-4540-95e0-db4ea99255f5","Date":"Mon, 19 Oct 2015 20:18:35 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T201835Z:d02bef52-d76e-4540-95e0-db4ea99255f5","Expires":"-1","Content-Length":"0","Azure-AsyncOperation":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/26b2f3cf-73c6-4852-b954-e395dae2dd5a?api-version=2015-06-15","x-ms-request-id":"26b2f3cf-73c6-4852-b954-e395dae2dd5a","Body":"","Location":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/26b2f3cf-73c6-4852-b954-e395dae2dd5a?monitor=true&api-version=2015-06-15"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/26b2f3cf-73c6-4852-b954-e395dae2dd5a?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14979","StatusCode":"200","x-ms-correlation-request-id":"3c777759-76e7-4b0b-a52d-275726be5fe6","Date":"Mon, 19 Oct 2015 20:18:36 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T201837Z:3c777759-76e7-4b0b-a52d-275726be5fe6","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"d41ded9b-1cc2-4ef9-a7a7-c9115839a07d","Body":"{\r\n \"operationId\": \"26b2f3cf-73c6-4852-b954-e395dae2dd5a\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:18:35.0229464+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/26b2f3cf-73c6-4852-b954-e395dae2dd5a?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14978","StatusCode":"200","x-ms-correlation-request-id":"c107fff6-2b86-4ec7-86dc-d6402f629c6e","Date":"Mon, 19 Oct 2015 20:19:07 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T201908Z:c107fff6-2b86-4ec7-86dc-d6402f629c6e","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"189","x-ms-request-id":"bdc5bcf9-837a-407c-b659-d563dccc71a4","Body":"{\r\n \"operationId\": \"26b2f3cf-73c6-4852-b954-e395dae2dd5a\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-10-19T20:18:35.0229464+00:00\",\r\n \"endTime\": \"2015-10-19T20:18:54.75732+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"POST","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnwlcqr/providers/Microsoft.Compute/virtualMachines/javatestVMgxztj/generalize?api-version=2015-06-15","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","x-ms-ratelimit-remaining-subscription-writes":"1179","Pragma":"no-cache","StatusCode":"200","x-ms-correlation-request-id":"635f378f-6082-4dc5-9d79-c2897c30c87c","Date":"Mon, 19 Oct 2015 20:20:08 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T202008Z:635f378f-6082-4dc5-9d79-c2897c30c87c","Expires":"-1","Content-Length":"0","x-ms-request-id":"e2d90515-659e-455c-bff2-dac55f776b9a","Body":""},{"User-Agent":"Azure-SDK-For-Java","Method":"POST","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnwlcqr/providers/Microsoft.Compute/virtualMachines/javatestVMgxztj/capture?api-version=2015-06-15","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","x-ms-ratelimit-remaining-subscription-writes":"1187","Pragma":"no-cache","StatusCode":"202","x-ms-correlation-request-id":"e33975f6-f961-40b3-a789-8442beed968a","Date":"Mon, 19 Oct 2015 20:20:10 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T202010Z:e33975f6-f961-40b3-a789-8442beed968a","Expires":"-1","Content-Length":"0","Azure-AsyncOperation":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/dfa0458a-b4f2-448a-b1e9-43a9ad7afe84?api-version=2015-06-15","x-ms-request-id":"dfa0458a-b4f2-448a-b1e9-43a9ad7afe84","Body":"","Location":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/dfa0458a-b4f2-448a-b1e9-43a9ad7afe84?monitor=true&api-version=2015-06-15"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/dfa0458a-b4f2-448a-b1e9-43a9ad7afe84?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14977","StatusCode":"200","x-ms-correlation-request-id":"a12db70a-9339-40c1-9bc5-ff4d2cd8eb7d","Date":"Mon, 19 Oct 2015 20:20:11 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T202011Z:a12db70a-9339-40c1-9bc5-ff4d2cd8eb7d","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"2379","x-ms-request-id":"c18ef6b4-a12e-497a-81b0-46ef17aa33dd","Body":"{\r\n \"operationId\": \"dfa0458a-b4f2-448a-b1e9-43a9ad7afe84\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-10-19T20:20:09.7416988+00:00\",\r\n \"endTime\": \"2015-10-19T20:20:10.3041377+00:00\",\r\n \"properties\": {\r\n \"output\": {\r\n \"$schema\": \"http://schema.management.azure.com/schemas/2014-04-01-preview/VM_IP.json\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"vmName\": {\r\n \"type\": \"string\"\r\n },\r\n \"vmSize\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"Standard_A0\"\r\n },\r\n \"adminUserName\": {\r\n \"type\": \"string\"\r\n },\r\n \"adminPassword\": {\r\n \"type\": \"securestring\"\r\n },\r\n \"networkInterfaceId\": {\r\n \"type\": \"string\"\r\n },\r\n \"availabilitySetId\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnwlcqr/providers/Microsoft.Compute/availabilitySets/JAVATEST1ASNBCNUB\"\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"apiVersion\": \"2015-06-15\",\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"[parameters('availabilitySetId')]\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"[parameters('vmSize')]\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vhdnamepre-osDisk.d3abab81-523e-4f9e-a3ed-fe158fa7e9e4.vhd\",\r\n \"createOption\": \"FromImage\",\r\n \"image\": {\r\n \"uri\": \"https://javatest1sancfhlg.blob.core.windows.net/system/Microsoft.Compute/Images/javatestdestconnufzr/vhdnamepre-osDisk.d3abab81-523e-4f9e-a3ed-fe158fa7e9e4.vhd\"\r\n },\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1sancfhlg.blob.core.windows.net/vmcontainer6c61c831-57c0-493b-acd4-ae16633617be/osDisk.6c61c831-57c0-493b-acd4-ae16633617be.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"[parameters('vmName')]\",\r\n \"adminUsername\": \"[parameters('adminUsername')]\",\r\n \"adminPassword\": \"[parameters('adminPassword')]\"\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"[parameters('networkInterfaceId')]\"}]},\r\n \"provisioningState\": 0\r\n },\r\n \"name\": \"[parameters('vmName')]\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\"\r\n }\r\n ]\r\n}\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"POST","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnwlcqr/providers/Microsoft.Compute/virtualMachines/javatestVMgxztj/deallocate?api-version=2015-06-15"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","x-ms-ratelimit-remaining-subscription-writes":"1178","Pragma":"no-cache","StatusCode":"202","x-ms-correlation-request-id":"47588440-4d83-4423-91d8-ab22c1c3da8c","Date":"Mon, 19 Oct 2015 20:20:10 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T202011Z:47588440-4d83-4423-91d8-ab22c1c3da8c","Expires":"-1","Content-Length":"0","Azure-AsyncOperation":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/7c7d287a-2a59-4ef7-a8de-518fbfdf7d29?api-version=2015-06-15","x-ms-request-id":"7c7d287a-2a59-4ef7-a8de-518fbfdf7d29","Body":"","Location":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/7c7d287a-2a59-4ef7-a8de-518fbfdf7d29?monitor=true&api-version=2015-06-15"},{"User-Agent":"Azure-SDK-For-Java","Method":"DELETE","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnwlcqr/providers/Microsoft.Compute/virtualMachines/javatestVMgxztj?api-version=2015-06-15","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","x-ms-ratelimit-remaining-subscription-writes":"1180","Pragma":"no-cache","StatusCode":"202","x-ms-correlation-request-id":"7fc89177-b3b1-4cbe-b38f-2882823e0a96","Date":"Mon, 19 Oct 2015 20:20:12 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T202012Z:7fc89177-b3b1-4cbe-b38f-2882823e0a96","Expires":"-1","Content-Length":"0","Azure-AsyncOperation":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/24872dcc-9c7a-459b-9d94-41eea6731f52?api-version=2015-06-15","x-ms-request-id":"24872dcc-9c7a-459b-9d94-41eea6731f52","Body":"","Location":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/24872dcc-9c7a-459b-9d94-41eea6731f52?monitor=true&api-version=2015-06-15"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/24872dcc-9c7a-459b-9d94-41eea6731f52?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14983","StatusCode":"200","x-ms-correlation-request-id":"6aabc5ea-094d-4fd6-9307-f59541f47938","Date":"Mon, 19 Oct 2015 20:20:13 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T202013Z:6aabc5ea-094d-4fd6-9307-f59541f47938","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"01de0c1c-6883-426b-bb07-0064e723d648","Body":"{\r\n \"operationId\": \"24872dcc-9c7a-459b-9d94-41eea6731f52\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:20:12.3822941+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/24872dcc-9c7a-459b-9d94-41eea6731f52?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14982","StatusCode":"200","x-ms-correlation-request-id":"41e4e609-b3de-44c2-a66a-952a4f16b72b","Date":"Mon, 19 Oct 2015 20:20:43 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T202044Z:41e4e609-b3de-44c2-a66a-952a4f16b72b","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"c05f1471-41fd-4eb8-8724-abd2b0d14c3b","Body":"{\r\n \"operationId\": \"24872dcc-9c7a-459b-9d94-41eea6731f52\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:20:12.3822941+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/24872dcc-9c7a-459b-9d94-41eea6731f52?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14981","StatusCode":"200","x-ms-correlation-request-id":"b4f7aee4-4ded-4430-b962-4227cc70f7df","Date":"Mon, 19 Oct 2015 20:20:53 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T202054Z:b4f7aee4-4ded-4430-b962-4227cc70f7df","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"09d26344-0b48-40ec-81a6-efc5e33cad43","Body":"{\r\n \"operationId\": \"24872dcc-9c7a-459b-9d94-41eea6731f52\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:20:12.3822941+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/24872dcc-9c7a-459b-9d94-41eea6731f52?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14980","StatusCode":"200","x-ms-correlation-request-id":"f940c1e7-2c9c-4761-8bd5-b7b1d681b123","Date":"Mon, 19 Oct 2015 20:21:04 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T202104Z:f940c1e7-2c9c-4761-8bd5-b7b1d681b123","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"e82892cc-de0b-45ae-8332-ddd6d46e57f1","Body":"{\r\n \"operationId\": \"24872dcc-9c7a-459b-9d94-41eea6731f52\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:20:12.3822941+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/24872dcc-9c7a-459b-9d94-41eea6731f52?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14979","StatusCode":"200","x-ms-correlation-request-id":"39887eff-77a3-41c6-87c4-52a7ecaff448","Date":"Mon, 19 Oct 2015 20:21:14 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T202114Z:39887eff-77a3-41c6-87c4-52a7ecaff448","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"b9642f74-db04-44be-93ca-535111e88f9c","Body":"{\r\n \"operationId\": \"24872dcc-9c7a-459b-9d94-41eea6731f52\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:20:12.3822941+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/24872dcc-9c7a-459b-9d94-41eea6731f52?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14978","StatusCode":"200","x-ms-correlation-request-id":"e14b57e0-118b-4279-b594-295379c43423","Date":"Mon, 19 Oct 2015 20:21:24 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T202125Z:e14b57e0-118b-4279-b594-295379c43423","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"091dc3fb-e415-45b8-8671-9615ad1b4283","Body":"{\r\n \"operationId\": \"24872dcc-9c7a-459b-9d94-41eea6731f52\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:20:12.3822941+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/24872dcc-9c7a-459b-9d94-41eea6731f52?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14977","StatusCode":"200","x-ms-correlation-request-id":"11cd548d-b0a8-452f-81bc-6a206625f501","Date":"Mon, 19 Oct 2015 20:21:35 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T202135Z:11cd548d-b0a8-452f-81bc-6a206625f501","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"727cb853-f7c9-43f8-9fa7-dc76e09c7453","Body":"{\r\n \"operationId\": \"24872dcc-9c7a-459b-9d94-41eea6731f52\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:20:12.3822941+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/24872dcc-9c7a-459b-9d94-41eea6731f52?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14976","StatusCode":"200","x-ms-correlation-request-id":"ee648c82-cc9e-41f0-af85-5de8ecece02a","Date":"Mon, 19 Oct 2015 20:21:45 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T202145Z:ee648c82-cc9e-41f0-af85-5de8ecece02a","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"7099019c-5b83-4de4-8101-b50f703adf16","Body":"{\r\n \"operationId\": \"24872dcc-9c7a-459b-9d94-41eea6731f52\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:20:12.3822941+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/24872dcc-9c7a-459b-9d94-41eea6731f52?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14975","StatusCode":"200","x-ms-correlation-request-id":"f56e2e02-31cb-4b09-8aa6-a94d33c5e8a0","Date":"Mon, 19 Oct 2015 20:21:55 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T202155Z:f56e2e02-31cb-4b09-8aa6-a94d33c5e8a0","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"21eb7c22-9faa-4916-a005-d41e2428a999","Body":"{\r\n \"operationId\": \"24872dcc-9c7a-459b-9d94-41eea6731f52\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:20:12.3822941+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/24872dcc-9c7a-459b-9d94-41eea6731f52?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14974","StatusCode":"200","x-ms-correlation-request-id":"068fa336-67ca-47b5-b89f-a1c614b5f91f","Date":"Mon, 19 Oct 2015 20:22:05 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T202206Z:068fa336-67ca-47b5-b89f-a1c614b5f91f","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"87e20c58-03fd-42b3-a8b9-f849dcfe9d0d","Body":"{\r\n \"operationId\": \"24872dcc-9c7a-459b-9d94-41eea6731f52\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:20:12.3822941+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/24872dcc-9c7a-459b-9d94-41eea6731f52?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14973","StatusCode":"200","x-ms-correlation-request-id":"e938b683-44b1-4a6b-b379-4c68e6bd73e1","Date":"Mon, 19 Oct 2015 20:22:16 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T202216Z:e938b683-44b1-4a6b-b379-4c68e6bd73e1","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"b04b9cba-3ea3-4770-abde-41b814e84c80","Body":"{\r\n \"operationId\": \"24872dcc-9c7a-459b-9d94-41eea6731f52\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:20:12.3822941+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/24872dcc-9c7a-459b-9d94-41eea6731f52?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14972","StatusCode":"200","x-ms-correlation-request-id":"1ccd4226-897d-467a-ac74-e8b010eef188","Date":"Mon, 19 Oct 2015 20:22:26 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T202226Z:1ccd4226-897d-467a-ac74-e8b010eef188","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"c646e83c-b42a-4775-be7b-f58222b57905","Body":"{\r\n \"operationId\": \"24872dcc-9c7a-459b-9d94-41eea6731f52\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:20:12.3822941+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/24872dcc-9c7a-459b-9d94-41eea6731f52?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14971","StatusCode":"200","x-ms-correlation-request-id":"538d6aa1-c341-4660-87ae-3d9185f1e0f8","Date":"Mon, 19 Oct 2015 20:22:36 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T202236Z:538d6aa1-c341-4660-87ae-3d9185f1e0f8","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"4bf95206-05bb-4619-ad88-3d80d6a8940c","Body":"{\r\n \"operationId\": \"24872dcc-9c7a-459b-9d94-41eea6731f52\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:20:12.3822941+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/24872dcc-9c7a-459b-9d94-41eea6731f52?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14970","StatusCode":"200","x-ms-correlation-request-id":"e80e224f-624c-4c20-8379-5058c09650c9","Date":"Mon, 19 Oct 2015 20:22:46 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T202247Z:e80e224f-624c-4c20-8379-5058c09650c9","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"190","x-ms-request-id":"4fc407ed-b2a3-4d21-89b9-6cfd70bca5cf","Body":"{\r\n \"operationId\": \"24872dcc-9c7a-459b-9d94-41eea6731f52\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-10-19T20:20:12.3822941+00:00\",\r\n \"endTime\": \"2015-10-19T20:22:41.147955+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"}] \ No newline at end of file diff --git a/resource-management/azure-mgmt-utility/src/test/resources/session-records/testVMScenarioOperations.json b/resource-management/azure-mgmt-utility/src/test/resources/session-records/testVMScenarioOperations.json index 189262cdbc8d..09911869e117 100644 --- a/resource-management/azure-mgmt-utility/src/test/resources/session-records/testVMScenarioOperations.json +++ b/resource-management/azure-mgmt-utility/src/test/resources/session-records/testVMScenarioOperations.json @@ -1 +1 @@ -[{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/javatestrgnvxvtv?api-version=2014-04-01-preview","Content-Type":"application/json; charset=utf-8"},{"x-ms-ratelimit-remaining-subscription-writes":"1192","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"6041c0ec-d87e-493a-b448-3a6761a780c4","Date":"Fri, 14 Aug 2015 22:55:39 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T225540Z:6041c0ec-d87e-493a-b448-3a6761a780c4","Expires":"-1","Content-Length":"192","x-ms-request-id":"6041c0ec-d87e-493a-b448-3a6761a780c4","Body":"{\"id\":\"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnvxvtv\",\"name\":\"javatestrgnvxvtv\",\"location\":\"southeastasia\",\"properties\":{\"provisioningState\":\"Succeeded\"}}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnvxvtv/providers/Microsoft.Storage/storageAccounts/javatest1sanrqglr?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-ratelimit-remaining-subscription-writes":"1182","Pragma":"no-cache","StatusCode":"202","x-ms-correlation-request-id":"5fa20283-ad01-4feb-ad31-39e0be2fd3cd","Date":"Fri, 14 Aug 2015 22:55:45 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"25","x-ms-routing-request-id":"WESTUS:20150814T225546Z:5fa20283-ad01-4feb-ad31-39e0be2fd3cd","Expires":"-1","Content-Length":"4","x-ms-request-id":"2ca4a723-4dc3-44ba-ad7d-b8390d281bd2","Body":"null","Content-Type":"application/json; charset=utf-8","Location":"https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/2ca4a723-4dc3-44ba-ad7d-b8390d281bd2?monitor=true&api-version=2015-05-01-preview"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/2ca4a723-4dc3-44ba-ad7d-b8390d281bd2?monitor=true&api-version=2015-05-01-preview"},{"Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14977","StatusCode":"202","x-ms-correlation-request-id":"08bb80f8-33cf-4646-a7d8-db8ff45e87fe","Date":"Fri, 14 Aug 2015 22:55:46 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"25","x-ms-routing-request-id":"WESTUS:20150814T225546Z:08bb80f8-33cf-4646-a7d8-db8ff45e87fe","Expires":"-1","Content-Length":"4","x-ms-request-id":"7db1a700-2820-4425-988e-1442cd7469d1","Body":"null","Content-Type":"application/json; charset=utf-8","Location":"https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/2ca4a723-4dc3-44ba-ad7d-b8390d281bd2?monitor=true&api-version=2015-05-01-preview"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/2ca4a723-4dc3-44ba-ad7d-b8390d281bd2?monitor=true&api-version=2015-05-01-preview"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14976","StatusCode":"200","x-ms-correlation-request-id":"cb295c6e-f0f9-48b4-bbb4-7d85d987db03","Date":"Fri, 14 Aug 2015 22:56:11 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T225611Z:cb295c6e-f0f9-48b4-bbb4-7d85d987db03","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"73","x-ms-request-id":"dff1cf14-d41c-44c7-b24a-6aff2cb6ca4f","Body":"{\"properties\":{\"accountType\":\"Standard_GRS\"},\"location\":\"Southeast Asia\"}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnvxvtv/providers/Microsoft.Storage/storageAccounts?api-version=2015-05-01-preview"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14974","StatusCode":"200","x-ms-correlation-request-id":"bec570c8-4920-45cb-9b18-6b0ee84c2c8f","Date":"Fri, 14 Aug 2015 22:56:11 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T225612Z:bec570c8-4920-45cb-9b18-6b0ee84c2c8f","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"728","x-ms-request-id":"8bb23b7b-f25e-40f3-8626-e3b56afe6823","Body":"{\"value\":[{\"id\":\"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnvxvtv/providers/Microsoft.Storage/storageAccounts/javatest1sanrqglr\",\"name\":\"javatest1sanrqglr\",\"location\":\"Southeast Asia\",\"type\":\"Microsoft.Storage/storageAccounts\",\"properties\":{\"provisioningState\":\"Succeeded\",\"accountType\":\"Standard_GRS\",\"primaryEndpoints\":{\"blob\":\"https://javatest1sanrqglr.blob.core.windows.net/\",\"queue\":\"https://javatest1sanrqglr.queue.core.windows.net/\",\"table\":\"https://javatest1sanrqglr.table.core.windows.net/\"},\"primaryLocation\":\"Southeast Asia\",\"statusOfPrimary\":\"Available\",\"secondaryLocation\":\"East Asia\",\"statusOfSecondary\":\"Available\",\"creationTime\":\"2015-08-14T22:55:43.9014509Z\"}}],\"nextLink\":\"\"}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnvxvtv/providers/Microsoft.Network/virtualnetworks/javatest1vnetnpuihw?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-ratelimit-remaining-subscription-writes":"1190","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"3b5b6dd2-23d5-436c-9618-f5b825db7ec5","Date":"Fri, 14 Aug 2015 22:56:16 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"10","x-ms-routing-request-id":"WESTUS:20150814T225616Z:3b5b6dd2-23d5-436c-9618-f5b825db7ec5","Expires":"-1","Content-Length":"1045","Azure-AsyncOperation":"https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/86e7582c-af52-42c1-85c7-742631a7ef82?api-version=2015-05-01-preview","x-ms-request-id":"86e7582c-af52-42c1-85c7-742631a7ef82","Body":"{\r\n \"name\": \"javatest1vnetnpuihw\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnvxvtv/providers/Microsoft.Network/virtualNetworks/javatest1vnetnpuihw\",\r\n \"etag\": \"W/\\\"4c393385-c18c-4ad3-9fda-502ed7c99be1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"8804a60b-3d5d-4c05-a4bc-d1059a042ffa\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"javatest1subnndxtcl\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnvxvtv/providers/Microsoft.Network/virtualNetworks/javatest1vnetnpuihw/subnets/javatest1subnndxtcl\",\r\n \"etag\": \"W/\\\"4c393385-c18c-4ad3-9fda-502ed7c99be1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"x-ms-version":"2015-05-01-preview","User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/86e7582c-af52-42c1-85c7-742631a7ef82?api-version=2015-05-01-preview"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14988","StatusCode":"200","x-ms-correlation-request-id":"d48bb231-c94e-4cbd-86d7-92b22d24cb98","Date":"Fri, 14 Aug 2015 22:56:17 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T225617Z:d48bb231-c94e-4cbd-86d7-92b22d24cb98","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"29","x-ms-request-id":"346749e6-353b-457f-9580-5e5f7988d6f3","Body":"{\r\n \"status\": \"Succeeded\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnvxvtv/providers/Microsoft.Network/virtualnetworks/javatest1vnetnpuihw?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14975","StatusCode":"200","x-ms-correlation-request-id":"10c1474c-1e6b-45a8-82e4-83d7b64db87d","Date":"Fri, 14 Aug 2015 22:56:17 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","ETag":"W/\"f3cf9799-d62c-4c54-9170-bb562280e47b\"","x-ms-routing-request-id":"WESTUS:20150814T225618Z:10c1474c-1e6b-45a8-82e4-83d7b64db87d","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1047","x-ms-request-id":"47b92711-fc80-44ae-bdcc-370bdc92c2d0","Body":"{\r\n \"name\": \"javatest1vnetnpuihw\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnvxvtv/providers/Microsoft.Network/virtualNetworks/javatest1vnetnpuihw\",\r\n \"etag\": \"W/\\\"f3cf9799-d62c-4c54-9170-bb562280e47b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8804a60b-3d5d-4c05-a4bc-d1059a042ffa\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"javatest1subnndxtcl\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnvxvtv/providers/Microsoft.Network/virtualNetworks/javatest1vnetnpuihw/subnets/javatest1subnndxtcl\",\r\n \"etag\": \"W/\\\"f3cf9799-d62c-4c54-9170-bb562280e47b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnvxvtv/providers/Microsoft.Network/networkInterfaces/javatest1nicnhtebx?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-ratelimit-remaining-subscription-writes":"1181","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"0c318b65-cdf0-4a82-9064-f872fa3508f9","Date":"Fri, 14 Aug 2015 22:56:20 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T225621Z:0c318b65-cdf0-4a82-9064-f872fa3508f9","Expires":"-1","Content-Length":"1234","Azure-AsyncOperation":"https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/9858d673-5744-4178-bc58-6fb288e0b937?api-version=2015-05-01-preview","x-ms-request-id":"9858d673-5744-4178-bc58-6fb288e0b937","Body":"{\r\n \"name\": \"javatest1nicnhtebx\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnvxvtv/providers/Microsoft.Network/networkInterfaces/javatest1nicnhtebx\",\r\n \"etag\": \"W/\\\"8e9efda3-ffce-4357-8200-e14e77f1b2dc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f3bc1e80-aa0f-4f3e-80a3-b02bdbc04578\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"javatest1ipcnbwrzh\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnvxvtv/providers/Microsoft.Network/networkInterfaces/javatest1nicnhtebx/ipConfigurations/javatest1ipcnbwrzh\",\r\n \"etag\": \"W/\\\"8e9efda3-ffce-4357-8200-e14e77f1b2dc\\\"\",\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnvxvtv/providers/Microsoft.Network/virtualNetworks/javatest1vnetnpuihw/subnets/javatest1subnndxtcl\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"x-ms-version":"2015-05-01-preview","User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/9858d673-5744-4178-bc58-6fb288e0b937?api-version=2015-05-01-preview"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14975","StatusCode":"200","x-ms-correlation-request-id":"404d894a-12e2-4eaf-bb5f-aba8f79c7d81","Date":"Fri, 14 Aug 2015 22:56:21 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T225622Z:404d894a-12e2-4eaf-bb5f-aba8f79c7d81","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"29","x-ms-request-id":"91d02de8-8840-461d-8350-19d3030d3708","Body":"{\r\n \"status\": \"Succeeded\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnvxvtv/providers/Microsoft.Network/networkInterfaces/javatest1nicnhtebx?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14974","StatusCode":"200","x-ms-correlation-request-id":"424762c0-86ca-4af9-a30c-0765b234715e","Date":"Fri, 14 Aug 2015 22:56:22 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","ETag":"W/\"8e9efda3-ffce-4357-8200-e14e77f1b2dc\"","x-ms-routing-request-id":"WESTUS:20150814T225623Z:424762c0-86ca-4af9-a30c-0765b234715e","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1234","x-ms-request-id":"d5bab0bb-9aac-46a6-8ed5-8a14403586d2","Body":"{\r\n \"name\": \"javatest1nicnhtebx\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnvxvtv/providers/Microsoft.Network/networkInterfaces/javatest1nicnhtebx\",\r\n \"etag\": \"W/\\\"8e9efda3-ffce-4357-8200-e14e77f1b2dc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f3bc1e80-aa0f-4f3e-80a3-b02bdbc04578\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"javatest1ipcnbwrzh\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnvxvtv/providers/Microsoft.Network/networkInterfaces/javatest1nicnhtebx/ipConfigurations/javatest1ipcnbwrzh\",\r\n \"etag\": \"W/\\\"8e9efda3-ffce-4357-8200-e14e77f1b2dc\\\"\",\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnvxvtv/providers/Microsoft.Network/virtualNetworks/javatest1vnetnpuihw/subnets/javatest1subnndxtcl\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnvxvtv/providers/Microsoft.Compute/availabilitySets/javatest1asnmoaae?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130834748847794074","x-ms-ratelimit-remaining-subscription-writes":"1190","Pragma":"no-cache","StatusCode":"200","x-ms-correlation-request-id":"df7ad240-fa0d-4816-a98c-cfa5b410df58","Date":"Fri, 14 Aug 2015 22:56:25 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T225625Z:df7ad240-fa0d-4816-a98c-cfa5b410df58","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"387","x-ms-request-id":"80e63f6d-7b88-463f-97ca-44d051497e4a","Body":"{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnvxvtv/providers/Microsoft.Compute/availabilitySets/javatest1asnmoaae\",\r\n \"name\": \"javatest1asnmoaae\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnvxvtv/providers/Microsoft.Compute/virtualMachines/javatestVMkbqal?api-version=2015-06-15","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130834748847794074","x-ms-ratelimit-remaining-subscription-writes":"1189","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"8829cfdb-1bb9-470c-a26a-9a0209931ace","Date":"Fri, 14 Aug 2015 22:56:29 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T225629Z:8829cfdb-1bb9-470c-a26a-9a0209931ace","Expires":"-1","Content-Length":"1587","Azure-AsyncOperation":"https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/dcad8506-0f22-4a88-baa8-7dbdcd88a1f0?api-version=2015-06-15","x-ms-request-id":"dcad8506-0f22-4a88-baa8-7dbdcd88a1f0","Body":"{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnvxvtv/providers/Microsoft.Compute/availabilitySets/JAVATEST1ASNMOAAE\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1sanrqglr.blob.core.windows.net/javatest1connclqfa/ososvhd.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javatestVMkbqal\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"properties\":{},\"id\":\"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnvxvtv/providers/Microsoft.Network/networkInterfaces/javatest1nicnhtebx\"}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnvxvtv/providers/Microsoft.Compute/virtualMachines/javatestVMkbqal\",\r\n \"name\": \"javatestVMkbqal\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/dcad8506-0f22-4a88-baa8-7dbdcd88a1f0?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130834748847794074","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14987","StatusCode":"200","x-ms-correlation-request-id":"d645b8c1-18d4-41e3-bac1-8f8c5d99d4ca","Date":"Fri, 14 Aug 2015 22:56:29 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T225630Z:d645b8c1-18d4-41e3-bac1-8f8c5d99d4ca","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"f572e570-3592-4f69-ab10-5c1d73bd6a40","Body":"{\r\n \"operationId\": \"dcad8506-0f22-4a88-baa8-7dbdcd88a1f0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-14T22:56:28.2025401+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnvxvtv/providers/Microsoft.Compute/virtualMachines/javatestVMkbqal?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130834748847794074","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14986","StatusCode":"200","x-ms-correlation-request-id":"ecc979cd-adc7-467d-809c-60bd9371248a","Date":"Fri, 14 Aug 2015 22:56:30 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T225630Z:ecc979cd-adc7-467d-809c-60bd9371248a","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1587","x-ms-request-id":"486b4858-0f9e-41be-b15d-223f1d45ac92","Body":"{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnvxvtv/providers/Microsoft.Compute/availabilitySets/JAVATEST1ASNMOAAE\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1sanrqglr.blob.core.windows.net/javatest1connclqfa/ososvhd.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javatestVMkbqal\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"properties\":{},\"id\":\"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnvxvtv/providers/Microsoft.Network/networkInterfaces/javatest1nicnhtebx\"}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnvxvtv/providers/Microsoft.Compute/virtualMachines/javatestVMkbqal\",\r\n \"name\": \"javatestVMkbqal\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnvxvtv/providers/Microsoft.Compute/virtualMachines/javatestVMkbqal?$expand=instanceView&api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130834748847794074","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14985","StatusCode":"200","x-ms-correlation-request-id":"cc22bc69-5970-435e-862c-34309204688a","Date":"Fri, 14 Aug 2015 22:56:30 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T225631Z:cc22bc69-5970-435e-862c-34309204688a","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"2517","x-ms-request-id":"27fbea1c-c55c-4cd6-aad6-c7cda19358a4","Body":"{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnvxvtv/providers/Microsoft.Compute/availabilitySets/JAVATEST1ASNMOAAE\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1sanrqglr.blob.core.windows.net/javatest1connclqfa/ososvhd.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javatestVMkbqal\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"properties\":{},\"id\":\"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnvxvtv/providers/Microsoft.Network/networkInterfaces/javatest1nicnhtebx\"}]},\r\n \"provisioningState\": \"Creating\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"Unknown\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n \"level\": \"Warning\",\r\n \"displayStatus\": \"Not Ready\",\r\n \"message\": \"VM status blob is found but not yet populated.\",\r\n \"time\": \"2015-08-14T22:56:30+00:00\"\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"osdisk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2015-08-14T22:56:29.7494018+00:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/creating\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Creating\"\r\n }\r\n ]\r\n }\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnvxvtv/providers/Microsoft.Compute/virtualMachines/javatestVMkbqal\",\r\n \"name\": \"javatestVMkbqal\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnvxvtv/providers/Microsoft.Compute/virtualMachines?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130834748847794074","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14984","StatusCode":"200","x-ms-correlation-request-id":"7d7bebdf-f4b2-42a2-a661-57fcd0b0cb58","Date":"Fri, 14 Aug 2015 22:56:30 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T225631Z:7d7bebdf-f4b2-42a2-a661-57fcd0b0cb58","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1788","x-ms-request-id":"1713ae3f-a162-4fc4-b873-ad88dd1a26d4","Body":"{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnvxvtv/providers/Microsoft.Compute/availabilitySets/JAVATEST1ASNMOAAE\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1sanrqglr.blob.core.windows.net/javatest1connclqfa/ososvhd.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javatestVMkbqal\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"properties\":{},\"id\":\"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnvxvtv/providers/Microsoft.Network/networkInterfaces/javatest1nicnhtebx\"}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnvxvtv/providers/Microsoft.Compute/virtualMachines/javatestVMkbqal\",\r\n \"name\": \"javatestVMkbqal\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnvxvtv/providers/Microsoft.Compute/virtualMachines/javatestVMkbqal/vmSizes?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130834748847794074","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14983","StatusCode":"200","x-ms-correlation-request-id":"d47e831d-3411-42c1-834b-c6c3bc45892a","Date":"Fri, 14 Aug 2015 22:56:30 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T225631Z:d47e831d-3411-42c1-834b-c6c3bc45892a","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"5867","x-ms-request-id":"f4d4bc6e-4df0-4ea3-87b6-1b18356f6f73","Body":"{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_DS1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 7168,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_DS2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28762,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28762,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57244,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n }\r\n ]\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnvxvtv/providers/Microsoft.Compute/availabilitySets/javatest1asnmoaae/vmSizes?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130834748847794074","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14982","StatusCode":"200","x-ms-correlation-request-id":"9afa948e-98d5-4f2b-b67a-84f3aceb21d4","Date":"Fri, 14 Aug 2015 22:56:31 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T225631Z:9afa948e-98d5-4f2b-b67a-84f3aceb21d4","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"5867","x-ms-request-id":"0b00a4d9-0a8b-4134-9abd-ec853c5c5d3d","Body":"{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_DS1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 7168,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_DS2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28762,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28762,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57244,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n }\r\n ]\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"DELETE","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnvxvtv/providers/Microsoft.Compute/virtualMachines/javatestVMkbqal?api-version=2015-06-15","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130834748847794074","x-ms-ratelimit-remaining-subscription-writes":"1188","Pragma":"no-cache","StatusCode":"202","x-ms-correlation-request-id":"a2007291-9bf4-4e5c-8930-f0b975d3f50d","Date":"Fri, 14 Aug 2015 22:56:33 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T225634Z:a2007291-9bf4-4e5c-8930-f0b975d3f50d","Expires":"-1","Content-Length":"0","Azure-AsyncOperation":"https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/864b6d46-5f59-4780-83c9-d7fe5f82326f?api-version=2015-06-15","x-ms-request-id":"864b6d46-5f59-4780-83c9-d7fe5f82326f","Body":"","Location":"https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/864b6d46-5f59-4780-83c9-d7fe5f82326f?monitor=true&api-version=2015-06-15"}] \ No newline at end of file +[{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/javatestrgnxgkpe?api-version=2014-04-01-preview","Content-Type":"application/json; charset=utf-8"},{"x-ms-ratelimit-remaining-subscription-writes":"1187","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"154bc196-28fa-4ee6-b3b9-1111f0f203cb","Date":"Mon, 19 Oct 2015 20:22:52 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T202253Z:154bc196-28fa-4ee6-b3b9-1111f0f203cb","Expires":"-1","Content-Length":"192","x-ms-request-id":"154bc196-28fa-4ee6-b3b9-1111f0f203cb","Body":"{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnxgkpe\",\"name\":\"javatestrgnxgkpe\",\"location\":\"southeastasia\",\"properties\":{\"provisioningState\":\"Succeeded\"}}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnxgkpe/providers/Microsoft.Storage/storageAccounts/javatest1sanjyxeb?api-version=2015-06-15","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-ratelimit-remaining-subscription-writes":"1184","Pragma":"no-cache","StatusCode":"202","x-ms-correlation-request-id":"696be385-e2ef-4985-a46a-1d0bb470deb7","Date":"Mon, 19 Oct 2015 20:22:56 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"25","x-ms-routing-request-id":"WESTUS:20151019T202256Z:696be385-e2ef-4985-a46a-1d0bb470deb7","Expires":"-1","Content-Length":"0","x-ms-request-id":"696be385-e2ef-4985-a46a-1d0bb470deb7","Body":"","Location":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/operations/f988c7e2-5553-4d6d-860f-b4ca2c34c3e2?monitor=true&api-version=2015-06-15"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/operations/f988c7e2-5553-4d6d-860f-b4ca2c34c3e2?monitor=true&api-version=2015-06-15"},{"Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14978","StatusCode":"202","x-ms-correlation-request-id":"9c8e38f4-f2f6-4183-b4a2-502496fef05f","Date":"Mon, 19 Oct 2015 20:22:56 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"25","x-ms-routing-request-id":"WESTUS:20151019T202257Z:9c8e38f4-f2f6-4183-b4a2-502496fef05f","Expires":"-1","Content-Length":"0","x-ms-request-id":"9c8e38f4-f2f6-4183-b4a2-502496fef05f","Body":"","Location":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/operations/f988c7e2-5553-4d6d-860f-b4ca2c34c3e2?monitor=true&api-version=2015-06-15"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/operations/f988c7e2-5553-4d6d-860f-b4ca2c34c3e2?monitor=true&api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14977","StatusCode":"200","x-ms-correlation-request-id":"43de48b6-03e3-4477-ac41-99b49fc1c436","Date":"Mon, 19 Oct 2015 20:23:21 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T202322Z:43de48b6-03e3-4477-ac41-99b49fc1c436","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"72","x-ms-request-id":"43de48b6-03e3-4477-ac41-99b49fc1c436","Body":"{\"location\":\"SouthEastAsia\",\"properties\":{\"accountType\":\"Standard_LRS\"}}","Content-Type":"application/json"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnxgkpe/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14976","StatusCode":"200","x-ms-correlation-request-id":"48de82b4-5f4b-43a3-89b4-1c2d2c3fd7a3","Date":"Mon, 19 Oct 2015 20:23:22 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T202323Z:48de82b4-5f4b-43a3-89b4-1c2d2c3fd7a3","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"717","x-ms-request-id":"48de82b4-5f4b-43a3-89b4-1c2d2c3fd7a3","Body":"{\"value\":[{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnxgkpe/providers/Microsoft.Storage/storageAccounts/javatest1sanjyxeb\",\"location\":\"southeastasia\",\"name\":\"javatest1sanjyxeb\",\"properties\":{\"accountType\":\"Standard_LRS\",\"creationTime\":\"2015-10-19T20:22:56.4839087Z\",\"primaryEndpoints\":{\"blob\":\"https://javatest1sanjyxeb.blob.core.windows.net/\",\"file\":\"https://javatest1sanjyxeb.file.core.windows.net/\",\"queue\":\"https://javatest1sanjyxeb.queue.core.windows.net/\",\"table\":\"https://javatest1sanjyxeb.table.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}]}\n","Content-Type":"application/json"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnxgkpe/providers/Microsoft.Network/virtualnetworks/javatest1vnetnmzuve?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-ratelimit-remaining-subscription-writes":"1186","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"bb61d69d-17b1-4fe1-94fc-54a00c94ca35","Date":"Mon, 19 Oct 2015 20:23:26 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"10","x-ms-routing-request-id":"WESTUS:20151019T202327Z:bb61d69d-17b1-4fe1-94fc-54a00c94ca35","Expires":"-1","Content-Length":"1108","Azure-AsyncOperation":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/southeastasia/operations/c6609d60-4faa-4b75-9c9f-1827966e1211?api-version=2015-05-01-preview","x-ms-request-id":"c6609d60-4faa-4b75-9c9f-1827966e1211","Body":"{\r\n \"name\": \"javatest1vnetnmzuve\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnxgkpe/providers/Microsoft.Network/virtualNetworks/javatest1vnetnmzuve\",\r\n \"etag\": \"W/\\\"056e866a-8c5d-4df0-807f-ac6619c4346c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"6cce7550-11d1-4162-900f-25655a14bf0d\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"javatest1subnnsnzko\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnxgkpe/providers/Microsoft.Network/virtualNetworks/javatest1vnetnmzuve/subnets/javatest1subnnsnzko\",\r\n \"etag\": \"W/\\\"056e866a-8c5d-4df0-807f-ac6619c4346c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"},{"x-ms-version":"2015-05-01-preview","User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/southeastasia/operations/c6609d60-4faa-4b75-9c9f-1827966e1211?api-version=2015-05-01-preview"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14976","StatusCode":"200","x-ms-correlation-request-id":"ca8d1605-3991-4ef6-9b2b-4fc2c0dbe131","Date":"Mon, 19 Oct 2015 20:23:27 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T202328Z:ca8d1605-3991-4ef6-9b2b-4fc2c0dbe131","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"29","x-ms-request-id":"8ffb755e-73fa-42c6-98f0-414fc35b2586","Body":"{\r\n \"status\": \"Succeeded\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnxgkpe/providers/Microsoft.Network/virtualnetworks/javatest1vnetnmzuve?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14969","StatusCode":"200","x-ms-correlation-request-id":"853f9639-b602-4291-8b1b-3bc39a75ca5a","Date":"Mon, 19 Oct 2015 20:23:29 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","ETag":"W/\"326beb10-d158-489f-aa15-3ab2994f428f\"","x-ms-routing-request-id":"WESTUS:20151019T202329Z:853f9639-b602-4291-8b1b-3bc39a75ca5a","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1110","x-ms-request-id":"a16c9cb0-5b67-4bd3-abd6-eff3281a5ccf","Body":"{\r\n \"name\": \"javatest1vnetnmzuve\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnxgkpe/providers/Microsoft.Network/virtualNetworks/javatest1vnetnmzuve\",\r\n \"etag\": \"W/\\\"326beb10-d158-489f-aa15-3ab2994f428f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6cce7550-11d1-4162-900f-25655a14bf0d\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"javatest1subnnsnzko\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnxgkpe/providers/Microsoft.Network/virtualNetworks/javatest1vnetnmzuve/subnets/javatest1subnnsnzko\",\r\n \"etag\": \"W/\\\"326beb10-d158-489f-aa15-3ab2994f428f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnxgkpe/providers/Microsoft.Network/networkInterfaces/javatest1nicnwqglp?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-ratelimit-remaining-subscription-writes":"1185","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"5075b0d2-5e0a-4aae-acfc-f62e9a7a7fc9","Date":"Mon, 19 Oct 2015 20:23:32 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T202332Z:5075b0d2-5e0a-4aae-acfc-f62e9a7a7fc9","Expires":"-1","Content-Length":"1361","Azure-AsyncOperation":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/southeastasia/operations/2697a701-c544-4b56-a95f-b7d7a8f2e3e2?api-version=2015-05-01-preview","x-ms-request-id":"2697a701-c544-4b56-a95f-b7d7a8f2e3e2","Body":"{\r\n \"name\": \"javatest1nicnwqglp\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnxgkpe/providers/Microsoft.Network/networkInterfaces/javatest1nicnwqglp\",\r\n \"etag\": \"W/\\\"b2554813-0003-45b0-93cf-d45494d88818\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"595b2db6-4d37-442a-986f-2f0b192f4d05\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"javatest1ipcnrsobo\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnxgkpe/providers/Microsoft.Network/networkInterfaces/javatest1nicnwqglp/ipConfigurations/javatest1ipcnrsobo\",\r\n \"etag\": \"W/\\\"b2554813-0003-45b0-93cf-d45494d88818\\\"\",\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/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnxgkpe/providers/Microsoft.Network/virtualNetworks/javatest1vnetnmzuve/subnets/javatest1subnnsnzko\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"},{"x-ms-version":"2015-05-01-preview","User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/southeastasia/operations/2697a701-c544-4b56-a95f-b7d7a8f2e3e2?api-version=2015-05-01-preview"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14975","StatusCode":"200","x-ms-correlation-request-id":"8ed3d6a6-da2a-4d93-8e6b-f894b53e7012","Date":"Mon, 19 Oct 2015 20:23:33 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T202333Z:8ed3d6a6-da2a-4d93-8e6b-f894b53e7012","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"29","x-ms-request-id":"691adfb2-3718-4891-80c5-6f9dc559eb7b","Body":"{\r\n \"status\": \"Succeeded\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnxgkpe/providers/Microsoft.Network/networkInterfaces/javatest1nicnwqglp?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14968","StatusCode":"200","x-ms-correlation-request-id":"4eee5316-d3ba-45bf-b6f1-bd09df7ba69b","Date":"Mon, 19 Oct 2015 20:23:34 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","ETag":"W/\"b2554813-0003-45b0-93cf-d45494d88818\"","x-ms-routing-request-id":"WESTUS:20151019T202334Z:4eee5316-d3ba-45bf-b6f1-bd09df7ba69b","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1361","x-ms-request-id":"64e54413-7ab1-4e6d-84b4-5df208c007e8","Body":"{\r\n \"name\": \"javatest1nicnwqglp\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnxgkpe/providers/Microsoft.Network/networkInterfaces/javatest1nicnwqglp\",\r\n \"etag\": \"W/\\\"b2554813-0003-45b0-93cf-d45494d88818\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"595b2db6-4d37-442a-986f-2f0b192f4d05\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"javatest1ipcnrsobo\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnxgkpe/providers/Microsoft.Network/networkInterfaces/javatest1nicnwqglp/ipConfigurations/javatest1ipcnrsobo\",\r\n \"etag\": \"W/\\\"b2554813-0003-45b0-93cf-d45494d88818\\\"\",\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/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnxgkpe/providers/Microsoft.Network/virtualNetworks/javatest1vnetnmzuve/subnets/javatest1subnnsnzko\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnxgkpe/providers/Microsoft.Compute/availabilitySets/javatest1asndmuxl?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","x-ms-ratelimit-remaining-subscription-writes":"1185","Pragma":"no-cache","StatusCode":"200","x-ms-correlation-request-id":"ae13740f-ee9d-44d0-8a63-4e4bfb4efc41","Date":"Mon, 19 Oct 2015 20:23:38 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T202339Z:ae13740f-ee9d-44d0-8a63-4e4bfb4efc41","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"387","x-ms-request-id":"b9b86dfa-c446-4888-9180-e833327a843b","Body":"{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnxgkpe/providers/Microsoft.Compute/availabilitySets/javatest1asndmuxl\",\r\n \"name\": \"javatest1asndmuxl\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnxgkpe/providers/Microsoft.Compute/virtualMachines/javatestVMkqcqo?api-version=2015-06-15","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","x-ms-ratelimit-remaining-subscription-writes":"1184","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"55bc7c1d-4221-4653-8cf7-4ab7e2dbc173","Date":"Mon, 19 Oct 2015 20:23:41 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T202342Z:55bc7c1d-4221-4653-8cf7-4ab7e2dbc173","Expires":"-1","Content-Length":"1640","Azure-AsyncOperation":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/f9f73c46-37c1-40dc-987f-a3c04f29667f?api-version=2015-06-15","x-ms-request-id":"f9f73c46-37c1-40dc-987f-a3c04f29667f","Body":"{\r\n \"properties\": {\r\n \"vmId\": \"bc9563c0-5d0a-469d-84c2-cf17228af3d5\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnxgkpe/providers/Microsoft.Compute/availabilitySets/JAVATEST1ASNDMUXL\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1sanjyxeb.blob.core.windows.net/javatest1connqpopv/ososvhd.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javatestVMkqcqo\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"properties\":{},\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnxgkpe/providers/Microsoft.Network/networkInterfaces/javatest1nicnwqglp\"}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnxgkpe/providers/Microsoft.Compute/virtualMachines/javatestVMkqcqo\",\r\n \"name\": \"javatestVMkqcqo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/f9f73c46-37c1-40dc-987f-a3c04f29667f?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14957","StatusCode":"200","x-ms-correlation-request-id":"8b814a4e-1ce6-4eaf-9c91-ff6384b6a21a","Date":"Mon, 19 Oct 2015 20:23:42 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T202343Z:8b814a4e-1ce6-4eaf-9c91-ff6384b6a21a","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"103bd928-a497-4f61-b0a5-fd874c0f2eca","Body":"{\r\n \"operationId\": \"f9f73c46-37c1-40dc-987f-a3c04f29667f\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:23:40.5385145+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnxgkpe/providers/Microsoft.Compute/virtualMachines/javatestVMkqcqo?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14956","StatusCode":"200","x-ms-correlation-request-id":"0719463d-1775-487e-8451-37b789221fc7","Date":"Mon, 19 Oct 2015 20:23:42 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T202343Z:0719463d-1775-487e-8451-37b789221fc7","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1640","x-ms-request-id":"2e74328f-0cc5-4c1c-991b-8daf49173ada","Body":"{\r\n \"properties\": {\r\n \"vmId\": \"bc9563c0-5d0a-469d-84c2-cf17228af3d5\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnxgkpe/providers/Microsoft.Compute/availabilitySets/JAVATEST1ASNDMUXL\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1sanjyxeb.blob.core.windows.net/javatest1connqpopv/ososvhd.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javatestVMkqcqo\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"properties\":{},\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnxgkpe/providers/Microsoft.Network/networkInterfaces/javatest1nicnwqglp\"}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnxgkpe/providers/Microsoft.Compute/virtualMachines/javatestVMkqcqo\",\r\n \"name\": \"javatestVMkqcqo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnxgkpe/providers/Microsoft.Compute/virtualMachines/javatestVMkqcqo?$expand=instanceView&api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14955","StatusCode":"200","x-ms-correlation-request-id":"3b49b677-1b40-4d1e-89d5-532b365b1fbf","Date":"Mon, 19 Oct 2015 20:23:43 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T202343Z:3b49b677-1b40-4d1e-89d5-532b365b1fbf","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"2570","x-ms-request-id":"d0b45a46-8dca-42c0-b43a-af9b5bc06b24","Body":"{\r\n \"properties\": {\r\n \"vmId\": \"bc9563c0-5d0a-469d-84c2-cf17228af3d5\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnxgkpe/providers/Microsoft.Compute/availabilitySets/JAVATEST1ASNDMUXL\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1sanjyxeb.blob.core.windows.net/javatest1connqpopv/ososvhd.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javatestVMkqcqo\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"properties\":{},\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnxgkpe/providers/Microsoft.Network/networkInterfaces/javatest1nicnwqglp\"}]},\r\n \"provisioningState\": \"Creating\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"Unknown\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n \"level\": \"Warning\",\r\n \"displayStatus\": \"Not Ready\",\r\n \"message\": \"VM status blob is found but not yet populated.\",\r\n \"time\": \"2015-10-19T20:23:43+00:00\"\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"osdisk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2015-10-19T20:23:41.8666813+00:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/creating\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Creating\"\r\n }\r\n ]\r\n }\r\n },\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnxgkpe/providers/Microsoft.Compute/virtualMachines/javatestVMkqcqo\",\r\n \"name\": \"javatestVMkqcqo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnxgkpe/providers/Microsoft.Compute/virtualMachines?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14954","StatusCode":"200","x-ms-correlation-request-id":"3227a8e2-cd26-49ee-8e6a-04be5fd2c08b","Date":"Mon, 19 Oct 2015 20:23:43 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T202344Z:3227a8e2-cd26-49ee-8e6a-04be5fd2c08b","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1845","x-ms-request-id":"7ce36ace-e204-4319-9420-68d82e408f31","Body":"{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"vmId\": \"bc9563c0-5d0a-469d-84c2-cf17228af3d5\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnxgkpe/providers/Microsoft.Compute/availabilitySets/JAVATEST1ASNDMUXL\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1sanjyxeb.blob.core.windows.net/javatest1connqpopv/ososvhd.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javatestVMkqcqo\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"properties\":{},\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnxgkpe/providers/Microsoft.Network/networkInterfaces/javatest1nicnwqglp\"}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnxgkpe/providers/Microsoft.Compute/virtualMachines/javatestVMkqcqo\",\r\n \"name\": \"javatestVMkqcqo\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnxgkpe/providers/Microsoft.Compute/virtualMachines/javatestVMkqcqo/vmSizes?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14953","StatusCode":"200","x-ms-correlation-request-id":"0b2ce241-49c8-4358-8080-612c0eea77ca","Date":"Mon, 19 Oct 2015 20:23:43 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T202344Z:0b2ce241-49c8-4358-8080-612c0eea77ca","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"5867","x-ms-request-id":"84cbdb77-de44-4f39-a385-3af87792bb1f","Body":"{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_DS1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 7168,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_DS2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28762,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28762,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57244,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n }\r\n ]\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnxgkpe/providers/Microsoft.Compute/availabilitySets/javatest1asndmuxl/vmSizes?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14952","StatusCode":"200","x-ms-correlation-request-id":"6561447f-914b-4dca-a8d9-2a3b491091f9","Date":"Mon, 19 Oct 2015 20:23:43 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T202344Z:6561447f-914b-4dca-a8d9-2a3b491091f9","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"5867","x-ms-request-id":"0b885616-8c96-4fad-9796-ae17b8c94fa3","Body":"{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_DS1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 7168,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_DS2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28762,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28762,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57244,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n }\r\n ]\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"DELETE","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnxgkpe/providers/Microsoft.Compute/virtualMachines/javatestVMkqcqo?api-version=2015-06-15","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","x-ms-ratelimit-remaining-subscription-writes":"1183","Pragma":"no-cache","StatusCode":"202","x-ms-correlation-request-id":"f2fdccb2-bfe4-4070-91d0-020f24bab4b2","Date":"Mon, 19 Oct 2015 20:23:44 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T202345Z:f2fdccb2-bfe4-4070-91d0-020f24bab4b2","Expires":"-1","Content-Length":"0","Azure-AsyncOperation":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/94b3f469-500b-462d-b484-bbf05783a778?api-version=2015-06-15","x-ms-request-id":"94b3f469-500b-462d-b484-bbf05783a778","Body":"","Location":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/94b3f469-500b-462d-b484-bbf05783a778?monitor=true&api-version=2015-06-15"}] \ No newline at end of file diff --git a/resource-management/azure-mgmt-utility/src/test/resources/session-records/testVMUsage.json b/resource-management/azure-mgmt-utility/src/test/resources/session-records/testVMUsage.json index f9953444f6b2..bfd073e3e985 100644 --- a/resource-management/azure-mgmt-utility/src/test/resources/session-records/testVMUsage.json +++ b/resource-management/azure-mgmt-utility/src/test/resources/session-records/testVMUsage.json @@ -1 +1 @@ -[{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/javatestrgnramvk?api-version=2014-04-01-preview","Content-Type":"application/json; charset=utf-8"},{"x-ms-ratelimit-remaining-subscription-writes":"1191","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"b77ba374-0c11-49b4-9905-a8b6b6714f1a","Date":"Fri, 14 Aug 2015 22:56:40 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T225641Z:b77ba374-0c11-49b4-9905-a8b6b6714f1a","Expires":"-1","Content-Length":"192","x-ms-request-id":"b77ba374-0c11-49b4-9905-a8b6b6714f1a","Body":"{\"id\":\"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnramvk\",\"name\":\"javatestrgnramvk\",\"location\":\"southeastasia\",\"properties\":{\"provisioningState\":\"Succeeded\"}}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnramvk/providers/Microsoft.Storage/storageAccounts/javatest1sanucxgm?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-ratelimit-remaining-subscription-writes":"1189","Pragma":"no-cache","StatusCode":"202","x-ms-correlation-request-id":"26590454-32a1-4960-bc55-61ab00699bb2","Date":"Fri, 14 Aug 2015 22:56:46 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"25","x-ms-routing-request-id":"WESTUS:20150814T225647Z:26590454-32a1-4960-bc55-61ab00699bb2","Expires":"-1","Content-Length":"4","x-ms-request-id":"175a510a-3d73-43fa-ad93-c434b63db47d","Body":"null","Content-Type":"application/json; charset=utf-8","Location":"https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/175a510a-3d73-43fa-ad93-c434b63db47d?monitor=true&api-version=2015-05-01-preview"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/175a510a-3d73-43fa-ad93-c434b63db47d?monitor=true&api-version=2015-05-01-preview"},{"Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14987","StatusCode":"202","x-ms-correlation-request-id":"9229ae5d-19a6-4ac8-8fd7-47e1705662f9","Date":"Fri, 14 Aug 2015 22:56:46 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"25","x-ms-routing-request-id":"WESTUS:20150814T225647Z:9229ae5d-19a6-4ac8-8fd7-47e1705662f9","Expires":"-1","Content-Length":"4","x-ms-request-id":"30213057-0f73-48c4-a9a4-f56377d105cd","Body":"null","Content-Type":"application/json; charset=utf-8","Location":"https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/175a510a-3d73-43fa-ad93-c434b63db47d?monitor=true&api-version=2015-05-01-preview"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/175a510a-3d73-43fa-ad93-c434b63db47d?monitor=true&api-version=2015-05-01-preview"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14986","StatusCode":"200","x-ms-correlation-request-id":"c534d4b3-0d33-428f-9a0b-ab5ead672351","Date":"Fri, 14 Aug 2015 22:57:12 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T225712Z:c534d4b3-0d33-428f-9a0b-ab5ead672351","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"73","x-ms-request-id":"f3fe7daf-20cc-48b0-80c4-b26f43343bbd","Body":"{\"properties\":{\"accountType\":\"Standard_GRS\"},\"location\":\"Southeast Asia\"}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnramvk/providers/Microsoft.Storage/storageAccounts?api-version=2015-05-01-preview"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14973","StatusCode":"200","x-ms-correlation-request-id":"6d48bd92-0b2a-4343-8bc9-cf5ee97f6e16","Date":"Fri, 14 Aug 2015 22:57:13 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T225713Z:6d48bd92-0b2a-4343-8bc9-cf5ee97f6e16","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"728","x-ms-request-id":"30de0f19-f510-40a3-ad81-ab0eee8b0594","Body":"{\"value\":[{\"id\":\"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnramvk/providers/Microsoft.Storage/storageAccounts/javatest1sanucxgm\",\"name\":\"javatest1sanucxgm\",\"location\":\"Southeast Asia\",\"type\":\"Microsoft.Storage/storageAccounts\",\"properties\":{\"provisioningState\":\"Succeeded\",\"accountType\":\"Standard_GRS\",\"primaryEndpoints\":{\"blob\":\"https://javatest1sanucxgm.blob.core.windows.net/\",\"queue\":\"https://javatest1sanucxgm.queue.core.windows.net/\",\"table\":\"https://javatest1sanucxgm.table.core.windows.net/\"},\"primaryLocation\":\"Southeast Asia\",\"statusOfPrimary\":\"Available\",\"secondaryLocation\":\"East Asia\",\"statusOfSecondary\":\"Available\",\"creationTime\":\"2015-08-14T22:56:43.6835417Z\"}}],\"nextLink\":\"\"}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnramvk/providers/Microsoft.Network/virtualnetworks/javatest1vnetncmoen?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-ratelimit-remaining-subscription-writes":"1188","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"28d74d61-1baf-4019-b6fb-cede1311fee1","Date":"Fri, 14 Aug 2015 22:57:15 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"10","x-ms-routing-request-id":"WESTUS:20150814T225715Z:28d74d61-1baf-4019-b6fb-cede1311fee1","Expires":"-1","Content-Length":"1045","Azure-AsyncOperation":"https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/9e664e4c-3247-46ef-890c-9395b315c6ef?api-version=2015-05-01-preview","x-ms-request-id":"9e664e4c-3247-46ef-890c-9395b315c6ef","Body":"{\r\n \"name\": \"javatest1vnetncmoen\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnramvk/providers/Microsoft.Network/virtualNetworks/javatest1vnetncmoen\",\r\n \"etag\": \"W/\\\"378fa35a-dfa2-4dec-949b-fd7414b79122\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"2dc99526-f949-400f-98b2-d5b24c82d8fa\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"javatest1subnnrzjal\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnramvk/providers/Microsoft.Network/virtualNetworks/javatest1vnetncmoen/subnets/javatest1subnnrzjal\",\r\n \"etag\": \"W/\\\"378fa35a-dfa2-4dec-949b-fd7414b79122\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"x-ms-version":"2015-05-01-preview","User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/9e664e4c-3247-46ef-890c-9395b315c6ef?api-version=2015-05-01-preview"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14985","StatusCode":"200","x-ms-correlation-request-id":"01b818cf-f56c-4913-8897-c5b18bcaa6b1","Date":"Fri, 14 Aug 2015 22:57:16 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T225716Z:01b818cf-f56c-4913-8897-c5b18bcaa6b1","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"29","x-ms-request-id":"e079abf9-be30-47ae-be88-96cc05e25cad","Body":"{\r\n \"status\": \"Succeeded\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnramvk/providers/Microsoft.Network/virtualnetworks/javatest1vnetncmoen?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14973","StatusCode":"200","x-ms-correlation-request-id":"92927e4a-bead-429d-b47f-3e3480dcf658","Date":"Fri, 14 Aug 2015 22:57:17 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","ETag":"W/\"bb363d01-19ab-4ca6-a9c5-ea2ffc664484\"","x-ms-routing-request-id":"WESTUS:20150814T225717Z:92927e4a-bead-429d-b47f-3e3480dcf658","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1047","x-ms-request-id":"172209ab-9511-4548-baa1-6e6dbeb53864","Body":"{\r\n \"name\": \"javatest1vnetncmoen\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnramvk/providers/Microsoft.Network/virtualNetworks/javatest1vnetncmoen\",\r\n \"etag\": \"W/\\\"bb363d01-19ab-4ca6-a9c5-ea2ffc664484\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2dc99526-f949-400f-98b2-d5b24c82d8fa\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"javatest1subnnrzjal\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnramvk/providers/Microsoft.Network/virtualNetworks/javatest1vnetncmoen/subnets/javatest1subnnrzjal\",\r\n \"etag\": \"W/\\\"bb363d01-19ab-4ca6-a9c5-ea2ffc664484\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnramvk/providers/Microsoft.Network/networkInterfaces/javatest1nicndjqzj?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-ratelimit-remaining-subscription-writes":"1187","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"2ff4f80e-47b7-42b5-a0bb-63da123faa56","Date":"Fri, 14 Aug 2015 22:57:20 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T225721Z:2ff4f80e-47b7-42b5-a0bb-63da123faa56","Expires":"-1","Content-Length":"1234","Azure-AsyncOperation":"https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/c103917d-5393-479e-9b49-aa43d26fccce?api-version=2015-05-01-preview","x-ms-request-id":"c103917d-5393-479e-9b49-aa43d26fccce","Body":"{\r\n \"name\": \"javatest1nicndjqzj\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnramvk/providers/Microsoft.Network/networkInterfaces/javatest1nicndjqzj\",\r\n \"etag\": \"W/\\\"50d3a55c-0eb5-46c4-9d7a-f915a2976c00\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2516405c-aa1f-4aa4-860e-480a120487b9\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"javatest1ipcnxefft\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnramvk/providers/Microsoft.Network/networkInterfaces/javatest1nicndjqzj/ipConfigurations/javatest1ipcnxefft\",\r\n \"etag\": \"W/\\\"50d3a55c-0eb5-46c4-9d7a-f915a2976c00\\\"\",\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnramvk/providers/Microsoft.Network/virtualNetworks/javatest1vnetncmoen/subnets/javatest1subnnrzjal\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"x-ms-version":"2015-05-01-preview","User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/c103917d-5393-479e-9b49-aa43d26fccce?api-version=2015-05-01-preview"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14981","StatusCode":"200","x-ms-correlation-request-id":"d8b25205-ed61-4ec8-931b-4cb1d7069df5","Date":"Fri, 14 Aug 2015 22:57:21 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T225722Z:d8b25205-ed61-4ec8-931b-4cb1d7069df5","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"29","x-ms-request-id":"7625bad6-edc9-472b-9c41-e44e13cf5ec6","Body":"{\r\n \"status\": \"Succeeded\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnramvk/providers/Microsoft.Network/networkInterfaces/javatest1nicndjqzj?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14972","StatusCode":"200","x-ms-correlation-request-id":"88aac4c4-55da-400f-82ed-2b8513d64a51","Date":"Fri, 14 Aug 2015 22:57:22 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","ETag":"W/\"50d3a55c-0eb5-46c4-9d7a-f915a2976c00\"","x-ms-routing-request-id":"WESTUS:20150814T225723Z:88aac4c4-55da-400f-82ed-2b8513d64a51","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1234","x-ms-request-id":"5d168a9c-21aa-4c0f-bbce-a8298802b5b2","Body":"{\r\n \"name\": \"javatest1nicndjqzj\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnramvk/providers/Microsoft.Network/networkInterfaces/javatest1nicndjqzj\",\r\n \"etag\": \"W/\\\"50d3a55c-0eb5-46c4-9d7a-f915a2976c00\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2516405c-aa1f-4aa4-860e-480a120487b9\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"javatest1ipcnxefft\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnramvk/providers/Microsoft.Network/networkInterfaces/javatest1nicndjqzj/ipConfigurations/javatest1ipcnxefft\",\r\n \"etag\": \"W/\\\"50d3a55c-0eb5-46c4-9d7a-f915a2976c00\\\"\",\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnramvk/providers/Microsoft.Network/virtualNetworks/javatest1vnetncmoen/subnets/javatest1subnnrzjal\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnramvk/providers/Microsoft.Compute/availabilitySets/javatest1asnouckv?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130834748847794074","x-ms-ratelimit-remaining-subscription-writes":"1190","Pragma":"no-cache","StatusCode":"200","x-ms-correlation-request-id":"3a2534dd-85e8-4f11-a820-b73b4dcff833","Date":"Fri, 14 Aug 2015 22:57:25 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T225726Z:3a2534dd-85e8-4f11-a820-b73b4dcff833","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"387","x-ms-request-id":"2a53f5eb-5f70-42cd-8f38-2168740604d1","Body":"{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnramvk/providers/Microsoft.Compute/availabilitySets/javatest1asnouckv\",\r\n \"name\": \"javatest1asnouckv\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnramvk/providers/Microsoft.Compute/virtualMachines/javatestVMinock?api-version=2015-06-15","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130834748847794074","x-ms-ratelimit-remaining-subscription-writes":"1189","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"211e7966-0ea6-4d40-8ff6-bb417e98b578","Date":"Fri, 14 Aug 2015 22:57:28 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T225729Z:211e7966-0ea6-4d40-8ff6-bb417e98b578","Expires":"-1","Content-Length":"1587","Azure-AsyncOperation":"https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/145861ab-22bd-4454-bdcb-aca9fe272e66?api-version=2015-06-15","x-ms-request-id":"145861ab-22bd-4454-bdcb-aca9fe272e66","Body":"{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnramvk/providers/Microsoft.Compute/availabilitySets/JAVATEST1ASNOUCKV\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1sanucxgm.blob.core.windows.net/javatest1connhxdge/ososvhd.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javatestVMinock\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"properties\":{},\"id\":\"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnramvk/providers/Microsoft.Network/networkInterfaces/javatest1nicndjqzj\"}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnramvk/providers/Microsoft.Compute/virtualMachines/javatestVMinock\",\r\n \"name\": \"javatestVMinock\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/145861ab-22bd-4454-bdcb-aca9fe272e66?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130834748847794074","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14972","StatusCode":"200","x-ms-correlation-request-id":"83d4884b-3056-43c0-a28f-7985529587ae","Date":"Fri, 14 Aug 2015 22:57:29 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T225730Z:83d4884b-3056-43c0-a28f-7985529587ae","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"140","x-ms-request-id":"13e20f69-8c11-467f-a1c1-6672d1d2359a","Body":"{\r\n \"operationId\": \"145861ab-22bd-4454-bdcb-aca9fe272e66\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-14T22:57:28.030664+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnramvk/providers/Microsoft.Compute/virtualMachines/javatestVMinock?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130834748847794074","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14971","StatusCode":"200","x-ms-correlation-request-id":"1fea0153-b3fc-484d-b0f2-03a65fca3f69","Date":"Fri, 14 Aug 2015 22:57:29 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T225730Z:1fea0153-b3fc-484d-b0f2-03a65fca3f69","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1587","x-ms-request-id":"e3fac7ac-4d61-4c56-a81e-5ba8d4129bbb","Body":"{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnramvk/providers/Microsoft.Compute/availabilitySets/JAVATEST1ASNOUCKV\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1sanucxgm.blob.core.windows.net/javatest1connhxdge/ososvhd.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javatestVMinock\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"properties\":{},\"id\":\"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnramvk/providers/Microsoft.Network/networkInterfaces/javatest1nicndjqzj\"}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnramvk/providers/Microsoft.Compute/virtualMachines/javatestVMinock\",\r\n \"name\": \"javatestVMinock\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/SouthEastAsia/usages?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130834748847794074","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14970","StatusCode":"200","x-ms-correlation-request-id":"87e234c2-b412-4690-95da-38b9899a44a3","Date":"Fri, 14 Aug 2015 22:57:30 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T225731Z:87e234c2-b412-4690-95da-38b9899a44a3","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"196","x-ms-request-id":"b8a02878-0967-4839-bf49-3bdfc0b5aed3","Body":"{\r\n \"value\": [\r\n {\r\n \"unit\": \"Count\",\r\n \"currentValue\": 2,\r\n \"limit\": 100,\r\n \"name\": {\r\n \"value\": \"cores\",\r\n \"localizedValue\": \"Cores\"\r\n }\r\n }\r\n ]\r\n}","Content-Type":"application/json; charset=utf-8"}] \ No newline at end of file +[{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/javatestrgniknic?api-version=2014-04-01-preview","Content-Type":"application/json; charset=utf-8"},{"x-ms-ratelimit-remaining-subscription-writes":"1181","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"274da740-2e76-4862-8ff5-04ba3546f8a3","Date":"Mon, 19 Oct 2015 20:23:49 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T202350Z:274da740-2e76-4862-8ff5-04ba3546f8a3","Expires":"-1","Content-Length":"192","x-ms-request-id":"274da740-2e76-4862-8ff5-04ba3546f8a3","Body":"{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgniknic\",\"name\":\"javatestrgniknic\",\"location\":\"southeastasia\",\"properties\":{\"provisioningState\":\"Succeeded\"}}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgniknic/providers/Microsoft.Storage/storageAccounts/javatest1sanxbpqf?api-version=2015-06-15","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-ratelimit-remaining-subscription-writes":"1179","Pragma":"no-cache","StatusCode":"202","x-ms-correlation-request-id":"65bcf938-42e7-4b24-9b5b-997234f465eb","Date":"Mon, 19 Oct 2015 20:23:53 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"25","x-ms-routing-request-id":"WESTUS:20151019T202353Z:65bcf938-42e7-4b24-9b5b-997234f465eb","Expires":"-1","Content-Length":"0","x-ms-request-id":"65bcf938-42e7-4b24-9b5b-997234f465eb","Body":"","Location":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/operations/37904721-0684-4b0c-84e1-9c8cb962740e?monitor=true&api-version=2015-06-15"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/operations/37904721-0684-4b0c-84e1-9c8cb962740e?monitor=true&api-version=2015-06-15"},{"Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14967","StatusCode":"202","x-ms-correlation-request-id":"324acdbf-e9f7-4c1f-9c2d-65978ca36232","Date":"Mon, 19 Oct 2015 20:23:53 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"25","x-ms-routing-request-id":"WESTUS:20151019T202354Z:324acdbf-e9f7-4c1f-9c2d-65978ca36232","Expires":"-1","Content-Length":"0","x-ms-request-id":"324acdbf-e9f7-4c1f-9c2d-65978ca36232","Body":"","Location":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/operations/37904721-0684-4b0c-84e1-9c8cb962740e?monitor=true&api-version=2015-06-15"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/operations/37904721-0684-4b0c-84e1-9c8cb962740e?monitor=true&api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14966","StatusCode":"200","x-ms-correlation-request-id":"a9254074-8af4-47d8-8af7-919eb65a3362","Date":"Mon, 19 Oct 2015 20:24:19 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T202419Z:a9254074-8af4-47d8-8af7-919eb65a3362","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"72","x-ms-request-id":"a9254074-8af4-47d8-8af7-919eb65a3362","Body":"{\"location\":\"SouthEastAsia\",\"properties\":{\"accountType\":\"Standard_LRS\"}}","Content-Type":"application/json"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgniknic/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14916","StatusCode":"200","x-ms-correlation-request-id":"209ca1d0-57a4-4666-9850-c26704c4d232","Date":"Mon, 19 Oct 2015 20:24:19 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T202419Z:209ca1d0-57a4-4666-9850-c26704c4d232","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"717","x-ms-request-id":"209ca1d0-57a4-4666-9850-c26704c4d232","Body":"{\"value\":[{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgniknic/providers/Microsoft.Storage/storageAccounts/javatest1sanxbpqf\",\"location\":\"southeastasia\",\"name\":\"javatest1sanxbpqf\",\"properties\":{\"accountType\":\"Standard_LRS\",\"creationTime\":\"2015-10-19T20:23:53.4890380Z\",\"primaryEndpoints\":{\"blob\":\"https://javatest1sanxbpqf.blob.core.windows.net/\",\"file\":\"https://javatest1sanxbpqf.file.core.windows.net/\",\"queue\":\"https://javatest1sanxbpqf.queue.core.windows.net/\",\"table\":\"https://javatest1sanxbpqf.table.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}]}\n","Content-Type":"application/json"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgniknic/providers/Microsoft.Network/virtualnetworks/javatest1vnetnsziok?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-ratelimit-remaining-subscription-writes":"1186","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"d7420017-3835-414c-ac1b-f9d2b616188a","Date":"Mon, 19 Oct 2015 20:24:23 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"10","x-ms-routing-request-id":"WESTUS:20151019T202424Z:d7420017-3835-414c-ac1b-f9d2b616188a","Expires":"-1","Content-Length":"1108","Azure-AsyncOperation":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/southeastasia/operations/a3981fb2-59ac-40aa-8ab8-65d0b10e5d34?api-version=2015-05-01-preview","x-ms-request-id":"a3981fb2-59ac-40aa-8ab8-65d0b10e5d34","Body":"{\r\n \"name\": \"javatest1vnetnsziok\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgniknic/providers/Microsoft.Network/virtualNetworks/javatest1vnetnsziok\",\r\n \"etag\": \"W/\\\"f99c1270-18a7-4cac-b292-a41b2568a743\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"ca702012-259c-44a9-80f3-250fd42d220c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"javatest1subnnkoegp\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgniknic/providers/Microsoft.Network/virtualNetworks/javatest1vnetnsziok/subnets/javatest1subnnkoegp\",\r\n \"etag\": \"W/\\\"f99c1270-18a7-4cac-b292-a41b2568a743\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"},{"x-ms-version":"2015-05-01-preview","User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/southeastasia/operations/a3981fb2-59ac-40aa-8ab8-65d0b10e5d34?api-version=2015-05-01-preview"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14903","StatusCode":"200","x-ms-correlation-request-id":"fd388f56-dcb1-4a3f-9250-42ed7763e6e1","Date":"Mon, 19 Oct 2015 20:24:24 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T202425Z:fd388f56-dcb1-4a3f-9250-42ed7763e6e1","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"29","x-ms-request-id":"eadc0397-6df4-44fb-ae94-7ad0bc6f501d","Body":"{\r\n \"status\": \"Succeeded\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgniknic/providers/Microsoft.Network/virtualnetworks/javatest1vnetnsziok?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14974","StatusCode":"200","x-ms-correlation-request-id":"4b95ae96-eea5-4e49-9760-62b95782d16d","Date":"Mon, 19 Oct 2015 20:24:25 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","ETag":"W/\"6ef3b041-db0e-4b08-b674-325ed6a8aba7\"","x-ms-routing-request-id":"WESTUS:20151019T202426Z:4b95ae96-eea5-4e49-9760-62b95782d16d","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1110","x-ms-request-id":"7514441d-5c8d-4be8-bf2a-5afe5bfe29de","Body":"{\r\n \"name\": \"javatest1vnetnsziok\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgniknic/providers/Microsoft.Network/virtualNetworks/javatest1vnetnsziok\",\r\n \"etag\": \"W/\\\"6ef3b041-db0e-4b08-b674-325ed6a8aba7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ca702012-259c-44a9-80f3-250fd42d220c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"javatest1subnnkoegp\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgniknic/providers/Microsoft.Network/virtualNetworks/javatest1vnetnsziok/subnets/javatest1subnnkoegp\",\r\n \"etag\": \"W/\\\"6ef3b041-db0e-4b08-b674-325ed6a8aba7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgniknic/providers/Microsoft.Network/networkInterfaces/javatest1nicnhgugd?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-ratelimit-remaining-subscription-writes":"1180","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"69da45b2-635d-44d3-9fc4-7423b69dee38","Date":"Mon, 19 Oct 2015 20:24:28 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T202429Z:69da45b2-635d-44d3-9fc4-7423b69dee38","Expires":"-1","Content-Length":"1361","Azure-AsyncOperation":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/southeastasia/operations/7ca0538f-3618-4ce6-ac6d-f7e54c7324bf?api-version=2015-05-01-preview","x-ms-request-id":"7ca0538f-3618-4ce6-ac6d-f7e54c7324bf","Body":"{\r\n \"name\": \"javatest1nicnhgugd\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgniknic/providers/Microsoft.Network/networkInterfaces/javatest1nicnhgugd\",\r\n \"etag\": \"W/\\\"93b5615c-afd9-4c7c-a98a-d2502d43076f\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8de54e7b-8168-4f15-8f58-d9dd3c4e91d6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"javatest1ipcntulzt\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgniknic/providers/Microsoft.Network/networkInterfaces/javatest1nicnhgugd/ipConfigurations/javatest1ipcntulzt\",\r\n \"etag\": \"W/\\\"93b5615c-afd9-4c7c-a98a-d2502d43076f\\\"\",\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/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgniknic/providers/Microsoft.Network/virtualNetworks/javatest1vnetnsziok/subnets/javatest1subnnkoegp\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"},{"x-ms-version":"2015-05-01-preview","User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/southeastasia/operations/7ca0538f-3618-4ce6-ac6d-f7e54c7324bf?api-version=2015-05-01-preview"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14951","StatusCode":"200","x-ms-correlation-request-id":"727327e5-007e-4957-9d4d-d82bf0621295","Date":"Mon, 19 Oct 2015 20:24:29 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T202430Z:727327e5-007e-4957-9d4d-d82bf0621295","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"29","x-ms-request-id":"35e75f23-4db0-4570-8423-cf053f1686cb","Body":"{\r\n \"status\": \"Succeeded\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgniknic/providers/Microsoft.Network/networkInterfaces/javatest1nicnhgugd?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14973","StatusCode":"200","x-ms-correlation-request-id":"293fb301-df40-45fd-99a2-ce03997901f5","Date":"Mon, 19 Oct 2015 20:24:30 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","ETag":"W/\"93b5615c-afd9-4c7c-a98a-d2502d43076f\"","x-ms-routing-request-id":"WESTUS:20151019T202431Z:293fb301-df40-45fd-99a2-ce03997901f5","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1361","x-ms-request-id":"e83d5b7b-1627-4f34-a5bc-690766c78781","Body":"{\r\n \"name\": \"javatest1nicnhgugd\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgniknic/providers/Microsoft.Network/networkInterfaces/javatest1nicnhgugd\",\r\n \"etag\": \"W/\\\"93b5615c-afd9-4c7c-a98a-d2502d43076f\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8de54e7b-8168-4f15-8f58-d9dd3c4e91d6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"javatest1ipcntulzt\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgniknic/providers/Microsoft.Network/networkInterfaces/javatest1nicnhgugd/ipConfigurations/javatest1ipcntulzt\",\r\n \"etag\": \"W/\\\"93b5615c-afd9-4c7c-a98a-d2502d43076f\\\"\",\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/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgniknic/providers/Microsoft.Network/virtualNetworks/javatest1vnetnsziok/subnets/javatest1subnnkoegp\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgniknic/providers/Microsoft.Compute/availabilitySets/javatest1asnmkdee?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","x-ms-ratelimit-remaining-subscription-writes":"1183","Pragma":"no-cache","StatusCode":"200","x-ms-correlation-request-id":"069a9c41-f811-4d25-afe8-491451c51458","Date":"Mon, 19 Oct 2015 20:24:35 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T202435Z:069a9c41-f811-4d25-afe8-491451c51458","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"387","x-ms-request-id":"c3d97cc6-383e-48b3-b908-a80defeabcc9","Body":"{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgniknic/providers/Microsoft.Compute/availabilitySets/javatest1asnmkdee\",\r\n \"name\": \"javatest1asnmkdee\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgniknic/providers/Microsoft.Compute/virtualMachines/javatestVMiatvj?api-version=2015-06-15","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","x-ms-ratelimit-remaining-subscription-writes":"1182","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"4523a063-9405-459d-ac37-f8370534e214","Date":"Mon, 19 Oct 2015 20:24:38 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T202438Z:4523a063-9405-459d-ac37-f8370534e214","Expires":"-1","Content-Length":"1640","Azure-AsyncOperation":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/2a28788a-4ed1-4210-a1f4-1d7132929037?api-version=2015-06-15","x-ms-request-id":"2a28788a-4ed1-4210-a1f4-1d7132929037","Body":"{\r\n \"properties\": {\r\n \"vmId\": \"d7b64f4a-390e-48c6-ae68-bf5e874f67a7\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgniknic/providers/Microsoft.Compute/availabilitySets/JAVATEST1ASNMKDEE\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1sanxbpqf.blob.core.windows.net/javatest1connwobom/ososvhd.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javatestVMiatvj\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"properties\":{},\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgniknic/providers/Microsoft.Network/networkInterfaces/javatest1nicnhgugd\"}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgniknic/providers/Microsoft.Compute/virtualMachines/javatestVMiatvj\",\r\n \"name\": \"javatestVMiatvj\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/2a28788a-4ed1-4210-a1f4-1d7132929037?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14975","StatusCode":"200","x-ms-correlation-request-id":"d369d0d7-b815-4172-8a28-d1ce95010324","Date":"Mon, 19 Oct 2015 20:24:39 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T202439Z:d369d0d7-b815-4172-8a28-d1ce95010324","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"9997d887-2a8e-4b8b-aad6-4938659b06f7","Body":"{\r\n \"operationId\": \"2a28788a-4ed1-4210-a1f4-1d7132929037\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:24:37.3041719+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgniknic/providers/Microsoft.Compute/virtualMachines/javatestVMiatvj?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14974","StatusCode":"200","x-ms-correlation-request-id":"34a0e0d9-ce41-4a8c-bba0-f120d814197f","Date":"Mon, 19 Oct 2015 20:24:39 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T202440Z:34a0e0d9-ce41-4a8c-bba0-f120d814197f","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1640","x-ms-request-id":"c2b79fb2-c77f-464e-b96d-0366a4bbc6a3","Body":"{\r\n \"properties\": {\r\n \"vmId\": \"d7b64f4a-390e-48c6-ae68-bf5e874f67a7\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgniknic/providers/Microsoft.Compute/availabilitySets/JAVATEST1ASNMKDEE\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1sanxbpqf.blob.core.windows.net/javatest1connwobom/ososvhd.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javatestVMiatvj\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"properties\":{},\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgniknic/providers/Microsoft.Network/networkInterfaces/javatest1nicnhgugd\"}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgniknic/providers/Microsoft.Compute/virtualMachines/javatestVMiatvj\",\r\n \"name\": \"javatestVMiatvj\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/SouthEastAsia/usages?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14973","StatusCode":"200","x-ms-correlation-request-id":"99cee669-5f37-461f-a2d4-57c7e65eb2fd","Date":"Mon, 19 Oct 2015 20:24:40 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T202440Z:99cee669-5f37-461f-a2d4-57c7e65eb2fd","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1029","x-ms-request-id":"e65982bf-34d5-43b8-ba03-51a1f934c395","Body":"{\r\n \"value\": [\r\n {\r\n \"unit\": \"Count\",\r\n \"currentValue\": 2,\r\n \"limit\": 2000,\r\n \"name\": {\r\n \"value\": \"availabilitySets\",\r\n \"localizedValue\": \"Availability Sets\"\r\n }\r\n },\r\n {\r\n \"unit\": \"Count\",\r\n \"currentValue\": 2,\r\n \"limit\": 100,\r\n \"name\": {\r\n \"value\": \"cores\",\r\n \"localizedValue\": \"Total Regional Cores\"\r\n }\r\n },\r\n {\r\n \"unit\": \"Count\",\r\n \"currentValue\": 2,\r\n \"limit\": 10000,\r\n \"name\": {\r\n \"value\": \"virtualMachines\",\r\n \"localizedValue\": \"Virtual Machines\"\r\n }\r\n },\r\n {\r\n \"unit\": \"Count\",\r\n \"currentValue\": 0,\r\n \"limit\": 200,\r\n \"name\": {\r\n \"value\": \"virtualMachineScaleSets\",\r\n \"localizedValue\": \"Virtual Machine Scale Sets\"\r\n }\r\n },\r\n {\r\n \"unit\": \"Count\",\r\n \"currentValue\": 2,\r\n \"limit\": 100,\r\n \"name\": {\r\n \"value\": \"standardA0_A7Family\",\r\n \"localizedValue\": \"Standard A0-A7 Family Cores\"\r\n }\r\n }\r\n ]\r\n}","Content-Type":"application/json; charset=utf-8"}] \ No newline at end of file diff --git a/resource-management/azure-mgmt-utility/src/test/resources/session-records/testVMWithLinuxProfile.json b/resource-management/azure-mgmt-utility/src/test/resources/session-records/testVMWithLinuxProfile.json index 9e45ae50691a..097540b5e49a 100644 --- a/resource-management/azure-mgmt-utility/src/test/resources/session-records/testVMWithLinuxProfile.json +++ b/resource-management/azure-mgmt-utility/src/test/resources/session-records/testVMWithLinuxProfile.json @@ -1 +1 @@ -[{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/SouthEastAsia/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.04/versions?api-version=2015-06-15&$top=1","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14982","StatusCode":"200","x-ms-correlation-request-id":"7f7e9127-8f7d-46ff-96c0-bc4321676ee9","Date":"Fri, 14 Aug 2015 22:47:34 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T224734Z:7f7e9127-8f7d-46ff-96c0-bc4321676ee9","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"296","x-ms-request-id":"71f8730c-e217-4624-a2ff-6a55eb2e8cd2","Body":"[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"15.04.201504171\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04/Versions/15.04.201504171\"\r\n }\r\n]","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/javatestrgnarvcd?api-version=2014-04-01-preview","Content-Type":"application/json; charset=utf-8"},{"Transfer-Encoding":"chunked","x-ms-ratelimit-remaining-subscription-writes":"1192","Pragma":"no-cache","StatusCode":"200","x-ms-correlation-request-id":"d0da4c06-260f-41ce-a39c-c774dd368e27","Date":"Fri, 14 Aug 2015 22:47:35 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T224736Z:d0da4c06-260f-41ce-a39c-c774dd368e27","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"192","x-ms-request-id":"d0da4c06-260f-41ce-a39c-c774dd368e27","Body":"{\"id\":\"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnarvcd\",\"name\":\"javatestrgnarvcd\",\"location\":\"southeastasia\",\"properties\":{\"provisioningState\":\"Succeeded\"}}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnarvcd/providers/Microsoft.Storage/storageAccounts/javatest1sanysord?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-ratelimit-remaining-subscription-writes":"1196","Pragma":"no-cache","StatusCode":"202","x-ms-correlation-request-id":"39808a42-00a3-4277-93dd-bf2470b78c16","Date":"Fri, 14 Aug 2015 22:47:41 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"25","x-ms-routing-request-id":"WESTUS:20150814T224741Z:39808a42-00a3-4277-93dd-bf2470b78c16","Expires":"-1","Content-Length":"4","x-ms-request-id":"04dc54a1-bebd-43f9-aea5-d5f6e0e9c2e3","Body":"null","Content-Type":"application/json; charset=utf-8","Location":"https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/04dc54a1-bebd-43f9-aea5-d5f6e0e9c2e3?monitor=true&api-version=2015-05-01-preview"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/04dc54a1-bebd-43f9-aea5-d5f6e0e9c2e3?monitor=true&api-version=2015-05-01-preview"},{"Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14995","StatusCode":"202","x-ms-correlation-request-id":"91b47e1b-780a-4c8a-b5e3-c1ff63719a84","Date":"Fri, 14 Aug 2015 22:47:42 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"25","x-ms-routing-request-id":"WESTUS:20150814T224742Z:91b47e1b-780a-4c8a-b5e3-c1ff63719a84","Expires":"-1","Content-Length":"4","x-ms-request-id":"b53595b5-e460-4ad0-9faa-4467727b6693","Body":"null","Content-Type":"application/json; charset=utf-8","Location":"https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/04dc54a1-bebd-43f9-aea5-d5f6e0e9c2e3?monitor=true&api-version=2015-05-01-preview"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/04dc54a1-bebd-43f9-aea5-d5f6e0e9c2e3?monitor=true&api-version=2015-05-01-preview"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14994","StatusCode":"200","x-ms-correlation-request-id":"3dae2c30-0ed0-430a-9945-a3aa113c9df1","Date":"Fri, 14 Aug 2015 22:48:06 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T224807Z:3dae2c30-0ed0-430a-9945-a3aa113c9df1","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"73","x-ms-request-id":"41450862-b58f-4e7d-ac5b-12cb70a91570","Body":"{\"properties\":{\"accountType\":\"Standard_GRS\"},\"location\":\"Southeast Asia\"}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnarvcd/providers/Microsoft.Storage/storageAccounts?api-version=2015-05-01-preview"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14990","StatusCode":"200","x-ms-correlation-request-id":"56551e81-d3f8-41d3-b770-f084d522a1e9","Date":"Fri, 14 Aug 2015 22:48:07 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T224808Z:56551e81-d3f8-41d3-b770-f084d522a1e9","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1431","x-ms-request-id":"fac8f2ea-21eb-4975-8899-cdaf41d69499","Body":"{\"value\":[{\"id\":\"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnarvcd/providers/Microsoft.Storage/storageAccounts/javatest1sanqsjtr\",\"name\":\"javatest1sanqsjtr\",\"location\":\"Southeast Asia\",\"type\":\"Microsoft.Storage/storageAccounts\",\"properties\":{\"provisioningState\":\"Succeeded\",\"accountType\":\"Standard_GRS\",\"primaryEndpoints\":{\"blob\":\"https://javatest1sanqsjtr.blob.core.windows.net/\",\"queue\":\"https://javatest1sanqsjtr.queue.core.windows.net/\",\"table\":\"https://javatest1sanqsjtr.table.core.windows.net/\"},\"primaryLocation\":\"Southeast Asia\",\"statusOfPrimary\":\"Available\",\"secondaryLocation\":\"East Asia\",\"statusOfSecondary\":\"Available\",\"creationTime\":\"2015-08-14T22:46:45.7227631Z\"}},{\"id\":\"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnarvcd/providers/Microsoft.Storage/storageAccounts/javatest1sanysord\",\"name\":\"javatest1sanysord\",\"location\":\"Southeast Asia\",\"type\":\"Microsoft.Storage/storageAccounts\",\"properties\":{\"provisioningState\":\"Succeeded\",\"accountType\":\"Standard_GRS\",\"primaryEndpoints\":{\"blob\":\"https://javatest1sanysord.blob.core.windows.net/\",\"queue\":\"https://javatest1sanysord.queue.core.windows.net/\",\"table\":\"https://javatest1sanysord.table.core.windows.net/\"},\"primaryLocation\":\"Southeast Asia\",\"statusOfPrimary\":\"Available\",\"secondaryLocation\":\"East Asia\",\"statusOfSecondary\":\"Available\",\"creationTime\":\"2015-08-14T22:47:39.9734410Z\"}}],\"nextLink\":\"\"}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnarvcd/providers/Microsoft.Network/virtualnetworks/javatest1vnetncrpdd?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-ratelimit-remaining-subscription-writes":"1197","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"dc96fdc9-74fd-4726-8d8f-ee63fe68c891","Date":"Fri, 14 Aug 2015 22:48:12 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"10","x-ms-routing-request-id":"WESTUS:20150814T224812Z:dc96fdc9-74fd-4726-8d8f-ee63fe68c891","Expires":"-1","Content-Length":"1045","Azure-AsyncOperation":"https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/da021cd6-68ad-4f8a-8dfc-23bac31db587?api-version=2015-05-01-preview","x-ms-request-id":"da021cd6-68ad-4f8a-8dfc-23bac31db587","Body":"{\r\n \"name\": \"javatest1vnetncrpdd\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnarvcd/providers/Microsoft.Network/virtualNetworks/javatest1vnetncrpdd\",\r\n \"etag\": \"W/\\\"554b343c-2d29-45ca-89b8-cf79873ffb0d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"ca719660-460c-44d9-8619-b70017f6fe28\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"javatest1subnnoyvtl\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnarvcd/providers/Microsoft.Network/virtualNetworks/javatest1vnetncrpdd/subnets/javatest1subnnoyvtl\",\r\n \"etag\": \"W/\\\"554b343c-2d29-45ca-89b8-cf79873ffb0d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"x-ms-version":"2015-05-01-preview","User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/da021cd6-68ad-4f8a-8dfc-23bac31db587?api-version=2015-05-01-preview"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14986","StatusCode":"200","x-ms-correlation-request-id":"9c2d0794-48cc-42c8-a480-17e01d547d7e","Date":"Fri, 14 Aug 2015 22:48:13 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T224813Z:9c2d0794-48cc-42c8-a480-17e01d547d7e","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"29","x-ms-request-id":"77407170-98f9-44a4-a5fa-e428e4cbd3f0","Body":"{\r\n \"status\": \"Succeeded\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnarvcd/providers/Microsoft.Network/virtualnetworks/javatest1vnetncrpdd?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14981","StatusCode":"200","x-ms-correlation-request-id":"69ced621-32d7-4490-8093-e77d19ceba5e","Date":"Fri, 14 Aug 2015 22:48:14 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","ETag":"W/\"ed19ec27-4a8b-4fab-83f5-f19d0c21e691\"","x-ms-routing-request-id":"WESTUS:20150814T224814Z:69ced621-32d7-4490-8093-e77d19ceba5e","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1047","x-ms-request-id":"674c2438-313b-4b1f-8b44-6e031abaaa7e","Body":"{\r\n \"name\": \"javatest1vnetncrpdd\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnarvcd/providers/Microsoft.Network/virtualNetworks/javatest1vnetncrpdd\",\r\n \"etag\": \"W/\\\"ed19ec27-4a8b-4fab-83f5-f19d0c21e691\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ca719660-460c-44d9-8619-b70017f6fe28\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"javatest1subnnoyvtl\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnarvcd/providers/Microsoft.Network/virtualNetworks/javatest1vnetncrpdd/subnets/javatest1subnnoyvtl\",\r\n \"etag\": \"W/\\\"ed19ec27-4a8b-4fab-83f5-f19d0c21e691\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnarvcd/providers/Microsoft.Network/networkInterfaces/javatest1nicnenpxl?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-ratelimit-remaining-subscription-writes":"1191","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"3e21c532-35bf-4d8a-badb-7fe742d55e59","Date":"Fri, 14 Aug 2015 22:48:17 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T224818Z:3e21c532-35bf-4d8a-badb-7fe742d55e59","Expires":"-1","Content-Length":"1234","Azure-AsyncOperation":"https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/2b4c7fef-f412-4332-a136-abcf7f977ea7?api-version=2015-05-01-preview","x-ms-request-id":"2b4c7fef-f412-4332-a136-abcf7f977ea7","Body":"{\r\n \"name\": \"javatest1nicnenpxl\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnarvcd/providers/Microsoft.Network/networkInterfaces/javatest1nicnenpxl\",\r\n \"etag\": \"W/\\\"577f7acc-0d2f-49b3-a71b-fa3d37fdbe68\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7da455ed-2456-4886-b8f9-996a760cffb3\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"javatest1ipcnyqpax\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnarvcd/providers/Microsoft.Network/networkInterfaces/javatest1nicnenpxl/ipConfigurations/javatest1ipcnyqpax\",\r\n \"etag\": \"W/\\\"577f7acc-0d2f-49b3-a71b-fa3d37fdbe68\\\"\",\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnarvcd/providers/Microsoft.Network/virtualNetworks/javatest1vnetncrpdd/subnets/javatest1subnnoyvtl\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"x-ms-version":"2015-05-01-preview","User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/2b4c7fef-f412-4332-a136-abcf7f977ea7?api-version=2015-05-01-preview"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14990","StatusCode":"200","x-ms-correlation-request-id":"248e4a76-ae7f-49bd-a0cd-66243518985f","Date":"Fri, 14 Aug 2015 22:48:18 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T224819Z:248e4a76-ae7f-49bd-a0cd-66243518985f","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"29","x-ms-request-id":"b2e404d2-cfe2-48aa-a45b-0658d0cb6286","Body":"{\r\n \"status\": \"Succeeded\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnarvcd/providers/Microsoft.Network/networkInterfaces/javatest1nicnenpxl?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14980","StatusCode":"200","x-ms-correlation-request-id":"0e2a83ec-dbb7-4a73-812d-f85f746cf482","Date":"Fri, 14 Aug 2015 22:48:19 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","ETag":"W/\"577f7acc-0d2f-49b3-a71b-fa3d37fdbe68\"","x-ms-routing-request-id":"WESTUS:20150814T224819Z:0e2a83ec-dbb7-4a73-812d-f85f746cf482","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1234","x-ms-request-id":"ab643928-050c-414c-860f-5f6ab3ae4b5e","Body":"{\r\n \"name\": \"javatest1nicnenpxl\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnarvcd/providers/Microsoft.Network/networkInterfaces/javatest1nicnenpxl\",\r\n \"etag\": \"W/\\\"577f7acc-0d2f-49b3-a71b-fa3d37fdbe68\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7da455ed-2456-4886-b8f9-996a760cffb3\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"javatest1ipcnyqpax\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnarvcd/providers/Microsoft.Network/networkInterfaces/javatest1nicnenpxl/ipConfigurations/javatest1ipcnyqpax\",\r\n \"etag\": \"W/\\\"577f7acc-0d2f-49b3-a71b-fa3d37fdbe68\\\"\",\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnarvcd/providers/Microsoft.Network/virtualNetworks/javatest1vnetncrpdd/subnets/javatest1subnnoyvtl\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnarvcd/providers/Microsoft.Compute/availabilitySets/javatest1asntbqsb?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130834748847794074","x-ms-ratelimit-remaining-subscription-writes":"1195","Pragma":"no-cache","StatusCode":"200","x-ms-correlation-request-id":"a2186e5e-72ce-4c02-a6db-f5911d996f16","Date":"Fri, 14 Aug 2015 22:48:23 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T224824Z:a2186e5e-72ce-4c02-a6db-f5911d996f16","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"387","x-ms-request-id":"5ac41fa5-6274-4adf-b5de-8bbddbfe6aa2","Body":"{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnarvcd/providers/Microsoft.Compute/availabilitySets/javatest1asntbqsb\",\r\n \"name\": \"javatest1asntbqsb\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnarvcd/providers/Microsoft.Compute/virtualMachines/javatestVMwurtp?api-version=2015-06-15","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130834748847794074","x-ms-ratelimit-remaining-subscription-writes":"1194","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"8fc03c81-e502-4848-aff4-85b97c42f2d6","Date":"Fri, 14 Aug 2015 22:48:27 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T224827Z:8fc03c81-e502-4848-aff4-85b97c42f2d6","Expires":"-1","Content-Length":"3050","Azure-AsyncOperation":"https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/afbd568c-ef1d-42ce-b358-eb36f215480d?api-version=2015-06-15","x-ms-request-id":"afbd568c-ef1d-42ce-b358-eb36f215480d","Body":"{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnarvcd/providers/Microsoft.Compute/availabilitySets/JAVATEST1ASNTBQSB\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"15.04\",\r\n \"version\": \"15.04.201504171\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1sanysord.blob.core.windows.net/javatest1connkfcfc/ososvhd.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javatestVMwurtp\",\r\n \"adminUsername\": \"Foo12\",\r\n \"customData\": \"ZWNobyAnSGVsbG8gV29ybGQn\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/Foo12/.ssh/authorized_keys\",\r\n \"keyData\": \"MIIDszCCApugAwIBAgIJALBV9YJCF/tAMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwHhcNMTUwMzIyMjI1NDQ5WhcNMTYwMzIxMjI1NDQ5WjBFMQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1TdGF0ZTEhMB8GA1UEChMYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMIIBIDANBgkqhkiG9w0BAQEFAAOCAQ0AMIIBCAKCAQEAxDC+OfmB+tQ+P1MLmuuW2hJLdcK8m4DLgAk5l8bQDNBcVezt+bt/ZFMsCHBhfTZG9O9yqMn8IRUh7/7jfQm6DmXCgtxj/uFiwT+F3out5uWvMV9SjFYvu9kJNXiDC2u3l4lHV8eHde6SbKiZB9Jji9FYQV4YiWrBa91j9I3hZzbTL0UCiJ+1PPoLRx/T1s9KT5Wn8m/z2EDrHWpetYu45OA7nzyIFOyQup5oWadWNnpk6HkCGutl9t9bcLdjXjXPm9wcy1yxIB3Dj/Y8Hnulr80GJlUtUboDm8TExGc4YaPJxdn0u5igo5gZc6qnqH/BMd1nsyICx6AZnKBXBycoSQIBI6OBpzCBpDAdBgNVHQ4EFgQUzWhrCCDsClANCGlKZ64rHp2BDn0wdQYDVR0jBG4wbIAUzWhrCCDsClANCGlKZ64rHp2BDn2hSaRHMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGSCCQCwVfWCQhf7QDAMBgNVHRMEBTADAQH/MA0GCSqGSIb3DQEBBQUAA4IBAQCUaJnX0aBzwBkbJrBS5YvkZnNKLdc4oHgC/Nsr/9pwXzFYYXkdqpTw2nygH0C0WuPVVrG3Y3EGx/UIGDtLbwMvZJhQN9mZH3oX+c3HGqBnXGuDRrtsfsK1ywAofx9amZfKNk/04/Rt3POdbyD1/AOADw2zMokbIapX+nMDUtD/Tew9+0qU9+dcFMrFE1N4utlrFHlrLFbiCA/eSegP6gOeu9mqZv7UHIz2oe6IQTw7zJF7xuBIzTYwjOCM197GKW7xc4GU4JZIN+faZ7njl/fxfUNdlqvgZUUnkfdrzU3PZPl0w9NuncgEje/PZ+YtZvIsnH7MLSPeIGNQwW6V2kc8\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"properties\":{},\"id\":\"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnarvcd/providers/Microsoft.Network/networkInterfaces/javatest1nicnenpxl\"}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnarvcd/providers/Microsoft.Compute/virtualMachines/javatestVMwurtp\",\r\n \"name\": \"javatestVMwurtp\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/afbd568c-ef1d-42ce-b358-eb36f215480d?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130834748847794074","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14979","StatusCode":"200","x-ms-correlation-request-id":"267d02e5-0863-4dab-8a0b-9cf7805a9704","Date":"Fri, 14 Aug 2015 22:48:28 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T224828Z:267d02e5-0863-4dab-8a0b-9cf7805a9704","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"3a50918e-49f3-40c0-8d46-ae564b362d66","Body":"{\r\n \"operationId\": \"afbd568c-ef1d-42ce-b358-eb36f215480d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-14T22:48:26.4994169+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnarvcd/providers/Microsoft.Compute/virtualMachines/javatestVMwurtp?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130834748847794074","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14978","StatusCode":"200","x-ms-correlation-request-id":"3b8b1e97-2794-4810-94b1-8cf4c57948f2","Date":"Fri, 14 Aug 2015 22:48:28 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T224828Z:3b8b1e97-2794-4810-94b1-8cf4c57948f2","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"3050","x-ms-request-id":"154584e2-3a74-4fe6-b38d-73a53321e629","Body":"{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnarvcd/providers/Microsoft.Compute/availabilitySets/JAVATEST1ASNTBQSB\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"15.04\",\r\n \"version\": \"15.04.201504171\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1sanysord.blob.core.windows.net/javatest1connkfcfc/ososvhd.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javatestVMwurtp\",\r\n \"adminUsername\": \"Foo12\",\r\n \"customData\": \"ZWNobyAnSGVsbG8gV29ybGQn\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/Foo12/.ssh/authorized_keys\",\r\n \"keyData\": \"MIIDszCCApugAwIBAgIJALBV9YJCF/tAMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwHhcNMTUwMzIyMjI1NDQ5WhcNMTYwMzIxMjI1NDQ5WjBFMQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1TdGF0ZTEhMB8GA1UEChMYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMIIBIDANBgkqhkiG9w0BAQEFAAOCAQ0AMIIBCAKCAQEAxDC+OfmB+tQ+P1MLmuuW2hJLdcK8m4DLgAk5l8bQDNBcVezt+bt/ZFMsCHBhfTZG9O9yqMn8IRUh7/7jfQm6DmXCgtxj/uFiwT+F3out5uWvMV9SjFYvu9kJNXiDC2u3l4lHV8eHde6SbKiZB9Jji9FYQV4YiWrBa91j9I3hZzbTL0UCiJ+1PPoLRx/T1s9KT5Wn8m/z2EDrHWpetYu45OA7nzyIFOyQup5oWadWNnpk6HkCGutl9t9bcLdjXjXPm9wcy1yxIB3Dj/Y8Hnulr80GJlUtUboDm8TExGc4YaPJxdn0u5igo5gZc6qnqH/BMd1nsyICx6AZnKBXBycoSQIBI6OBpzCBpDAdBgNVHQ4EFgQUzWhrCCDsClANCGlKZ64rHp2BDn0wdQYDVR0jBG4wbIAUzWhrCCDsClANCGlKZ64rHp2BDn2hSaRHMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGSCCQCwVfWCQhf7QDAMBgNVHRMEBTADAQH/MA0GCSqGSIb3DQEBBQUAA4IBAQCUaJnX0aBzwBkbJrBS5YvkZnNKLdc4oHgC/Nsr/9pwXzFYYXkdqpTw2nygH0C0WuPVVrG3Y3EGx/UIGDtLbwMvZJhQN9mZH3oX+c3HGqBnXGuDRrtsfsK1ywAofx9amZfKNk/04/Rt3POdbyD1/AOADw2zMokbIapX+nMDUtD/Tew9+0qU9+dcFMrFE1N4utlrFHlrLFbiCA/eSegP6gOeu9mqZv7UHIz2oe6IQTw7zJF7xuBIzTYwjOCM197GKW7xc4GU4JZIN+faZ7njl/fxfUNdlqvgZUUnkfdrzU3PZPl0w9NuncgEje/PZ+YtZvIsnH7MLSPeIGNQwW6V2kc8\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"properties\":{},\"id\":\"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnarvcd/providers/Microsoft.Network/networkInterfaces/javatest1nicnenpxl\"}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnarvcd/providers/Microsoft.Compute/virtualMachines/javatestVMwurtp\",\r\n \"name\": \"javatestVMwurtp\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnarvcd/providers/Microsoft.Compute/virtualMachines/javatestVMwurtp?$expand=instanceView&api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130834748847794074","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14977","StatusCode":"200","x-ms-correlation-request-id":"0fa73f8b-c3fa-479d-b4fe-c3e2461e19c0","Date":"Fri, 14 Aug 2015 22:48:28 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T224829Z:0fa73f8b-c3fa-479d-b4fe-c3e2461e19c0","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"3980","x-ms-request-id":"f7f2e167-55fc-4503-b9bd-6c9dd848a87c","Body":"{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnarvcd/providers/Microsoft.Compute/availabilitySets/JAVATEST1ASNTBQSB\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"15.04\",\r\n \"version\": \"15.04.201504171\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1sanysord.blob.core.windows.net/javatest1connkfcfc/ososvhd.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javatestVMwurtp\",\r\n \"adminUsername\": \"Foo12\",\r\n \"customData\": \"ZWNobyAnSGVsbG8gV29ybGQn\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/Foo12/.ssh/authorized_keys\",\r\n \"keyData\": \"MIIDszCCApugAwIBAgIJALBV9YJCF/tAMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwHhcNMTUwMzIyMjI1NDQ5WhcNMTYwMzIxMjI1NDQ5WjBFMQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1TdGF0ZTEhMB8GA1UEChMYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMIIBIDANBgkqhkiG9w0BAQEFAAOCAQ0AMIIBCAKCAQEAxDC+OfmB+tQ+P1MLmuuW2hJLdcK8m4DLgAk5l8bQDNBcVezt+bt/ZFMsCHBhfTZG9O9yqMn8IRUh7/7jfQm6DmXCgtxj/uFiwT+F3out5uWvMV9SjFYvu9kJNXiDC2u3l4lHV8eHde6SbKiZB9Jji9FYQV4YiWrBa91j9I3hZzbTL0UCiJ+1PPoLRx/T1s9KT5Wn8m/z2EDrHWpetYu45OA7nzyIFOyQup5oWadWNnpk6HkCGutl9t9bcLdjXjXPm9wcy1yxIB3Dj/Y8Hnulr80GJlUtUboDm8TExGc4YaPJxdn0u5igo5gZc6qnqH/BMd1nsyICx6AZnKBXBycoSQIBI6OBpzCBpDAdBgNVHQ4EFgQUzWhrCCDsClANCGlKZ64rHp2BDn0wdQYDVR0jBG4wbIAUzWhrCCDsClANCGlKZ64rHp2BDn2hSaRHMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGSCCQCwVfWCQhf7QDAMBgNVHRMEBTADAQH/MA0GCSqGSIb3DQEBBQUAA4IBAQCUaJnX0aBzwBkbJrBS5YvkZnNKLdc4oHgC/Nsr/9pwXzFYYXkdqpTw2nygH0C0WuPVVrG3Y3EGx/UIGDtLbwMvZJhQN9mZH3oX+c3HGqBnXGuDRrtsfsK1ywAofx9amZfKNk/04/Rt3POdbyD1/AOADw2zMokbIapX+nMDUtD/Tew9+0qU9+dcFMrFE1N4utlrFHlrLFbiCA/eSegP6gOeu9mqZv7UHIz2oe6IQTw7zJF7xuBIzTYwjOCM197GKW7xc4GU4JZIN+faZ7njl/fxfUNdlqvgZUUnkfdrzU3PZPl0w9NuncgEje/PZ+YtZvIsnH7MLSPeIGNQwW6V2kc8\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"properties\":{},\"id\":\"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnarvcd/providers/Microsoft.Network/networkInterfaces/javatest1nicnenpxl\"}]},\r\n \"provisioningState\": \"Creating\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"Unknown\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n \"level\": \"Warning\",\r\n \"displayStatus\": \"Not Ready\",\r\n \"message\": \"VM status blob is found but not yet populated.\",\r\n \"time\": \"2015-08-14T22:48:28+00:00\"\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"osdisk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2015-08-14T22:48:27.4368581+00:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/creating\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Creating\"\r\n }\r\n ]\r\n }\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnarvcd/providers/Microsoft.Compute/virtualMachines/javatestVMwurtp\",\r\n \"name\": \"javatestVMwurtp\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"}] \ No newline at end of file +[{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/SouthEastAsia/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.04/versions?api-version=2015-06-15&$top=1","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14986","StatusCode":"200","x-ms-correlation-request-id":"68d3a453-8c15-4be8-9e77-c7e2c320d70e","Date":"Mon, 19 Oct 2015 20:16:45 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T201646Z:68d3a453-8c15-4be8-9e77-c7e2c320d70e","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"296","x-ms-request-id":"7d71ab4b-c2fe-40b7-8edf-a77f6ee5cd7b","Body":"[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"15.04.201504171\",\r\n \"id\": \"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.04/Versions/15.04.201504171\"\r\n }\r\n]","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/javatestrgnpvnxb?api-version=2014-04-01-preview","Content-Type":"application/json; charset=utf-8"},{"Transfer-Encoding":"chunked","x-ms-ratelimit-remaining-subscription-writes":"1188","Pragma":"no-cache","StatusCode":"200","x-ms-correlation-request-id":"66983d1a-8712-4aa2-9fa6-8cb028c1abfb","Date":"Mon, 19 Oct 2015 20:16:46 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T201647Z:66983d1a-8712-4aa2-9fa6-8cb028c1abfb","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"192","x-ms-request-id":"66983d1a-8712-4aa2-9fa6-8cb028c1abfb","Body":"{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpvnxb\",\"name\":\"javatestrgnpvnxb\",\"location\":\"southeastasia\",\"properties\":{\"provisioningState\":\"Succeeded\"}}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpvnxb/providers/Microsoft.Storage/storageAccounts/javatest1sansfyqi?api-version=2015-06-15","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-ratelimit-remaining-subscription-writes":"1185","Pragma":"no-cache","StatusCode":"202","x-ms-correlation-request-id":"6f738573-13a5-4106-b2bd-a812a182625e","Date":"Mon, 19 Oct 2015 20:16:50 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"25","x-ms-routing-request-id":"WESTUS:20151019T201650Z:6f738573-13a5-4106-b2bd-a812a182625e","Expires":"-1","Content-Length":"0","x-ms-request-id":"6f738573-13a5-4106-b2bd-a812a182625e","Body":"","Location":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/operations/1d2eef23-73ab-4c53-816e-79e75f93852e?monitor=true&api-version=2015-06-15"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/operations/1d2eef23-73ab-4c53-816e-79e75f93852e?monitor=true&api-version=2015-06-15"},{"Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14922","StatusCode":"202","x-ms-correlation-request-id":"f8f499c8-a307-440e-ad4a-e4b90c1cda1a","Date":"Mon, 19 Oct 2015 20:16:50 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"25","x-ms-routing-request-id":"WESTUS:20151019T201650Z:f8f499c8-a307-440e-ad4a-e4b90c1cda1a","Expires":"-1","Content-Length":"0","x-ms-request-id":"f8f499c8-a307-440e-ad4a-e4b90c1cda1a","Body":"","Location":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/operations/1d2eef23-73ab-4c53-816e-79e75f93852e?monitor=true&api-version=2015-06-15"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/operations/1d2eef23-73ab-4c53-816e-79e75f93852e?monitor=true&api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14921","StatusCode":"200","x-ms-correlation-request-id":"55385762-c09a-4edf-9cc5-102479a34e6f","Date":"Mon, 19 Oct 2015 20:17:15 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T201715Z:55385762-c09a-4edf-9cc5-102479a34e6f","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"72","x-ms-request-id":"55385762-c09a-4edf-9cc5-102479a34e6f","Body":"{\"location\":\"SouthEastAsia\",\"properties\":{\"accountType\":\"Standard_LRS\"}}","Content-Type":"application/json"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpvnxb/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14920","StatusCode":"200","x-ms-correlation-request-id":"e532e0bf-25ad-4755-8897-ef80dd563d27","Date":"Mon, 19 Oct 2015 20:17:15 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T201716Z:e532e0bf-25ad-4755-8897-ef80dd563d27","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1422","x-ms-request-id":"e532e0bf-25ad-4755-8897-ef80dd563d27","Body":"{\"value\":[{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpvnxb/providers/Microsoft.Storage/storageAccounts/javatest1sanicatv\",\"location\":\"southeastasia\",\"name\":\"javatest1sanicatv\",\"properties\":{\"accountType\":\"Standard_LRS\",\"creationTime\":\"2015-10-19T20:15:59.3187102Z\",\"primaryEndpoints\":{\"blob\":\"https://javatest1sanicatv.blob.core.windows.net/\",\"file\":\"https://javatest1sanicatv.file.core.windows.net/\",\"queue\":\"https://javatest1sanicatv.queue.core.windows.net/\",\"table\":\"https://javatest1sanicatv.table.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"},{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpvnxb/providers/Microsoft.Storage/storageAccounts/javatest1sansfyqi\",\"location\":\"southeastasia\",\"name\":\"javatest1sansfyqi\",\"properties\":{\"accountType\":\"Standard_LRS\",\"creationTime\":\"2015-10-19T20:16:49.9881493Z\",\"primaryEndpoints\":{\"blob\":\"https://javatest1sansfyqi.blob.core.windows.net/\",\"file\":\"https://javatest1sansfyqi.file.core.windows.net/\",\"queue\":\"https://javatest1sansfyqi.queue.core.windows.net/\",\"table\":\"https://javatest1sansfyqi.table.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}]}\n","Content-Type":"application/json"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpvnxb/providers/Microsoft.Network/virtualnetworks/javatest1vnetnctajm?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-ratelimit-remaining-subscription-writes":"1188","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"b868e6ff-024e-41d0-b4a6-8a99a615fb62","Date":"Mon, 19 Oct 2015 20:17:19 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"10","x-ms-routing-request-id":"WESTUS:20151019T201720Z:b868e6ff-024e-41d0-b4a6-8a99a615fb62","Expires":"-1","Content-Length":"1108","Azure-AsyncOperation":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/southeastasia/operations/ed79fab8-46df-470a-85ac-cbae09832aec?api-version=2015-05-01-preview","x-ms-request-id":"ed79fab8-46df-470a-85ac-cbae09832aec","Body":"{\r\n \"name\": \"javatest1vnetnctajm\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpvnxb/providers/Microsoft.Network/virtualNetworks/javatest1vnetnctajm\",\r\n \"etag\": \"W/\\\"687736c5-5120-43a4-af9c-ee5c2c26464c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"b242aca6-ca9e-4aee-933c-c9d40df8162d\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"javatest1subnnlfuin\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpvnxb/providers/Microsoft.Network/virtualNetworks/javatest1vnetnctajm/subnets/javatest1subnnlfuin\",\r\n \"etag\": \"W/\\\"687736c5-5120-43a4-af9c-ee5c2c26464c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"},{"x-ms-version":"2015-05-01-preview","User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/southeastasia/operations/ed79fab8-46df-470a-85ac-cbae09832aec?api-version=2015-05-01-preview"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14910","StatusCode":"200","x-ms-correlation-request-id":"67019c67-f012-426b-82cc-1f58359a2a58","Date":"Mon, 19 Oct 2015 20:17:20 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T201721Z:67019c67-f012-426b-82cc-1f58359a2a58","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"29","x-ms-request-id":"f05efb5b-e30b-4cf8-8af3-30909ede1f30","Body":"{\r\n \"status\": \"Succeeded\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpvnxb/providers/Microsoft.Network/virtualnetworks/javatest1vnetnctajm?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14985","StatusCode":"200","x-ms-correlation-request-id":"03f99183-39d5-4f34-b0a8-55a2abcb5f61","Date":"Mon, 19 Oct 2015 20:17:22 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","ETag":"W/\"53de366d-2db9-47ed-bc2d-21548f6d7305\"","x-ms-routing-request-id":"WESTUS:20151019T201722Z:03f99183-39d5-4f34-b0a8-55a2abcb5f61","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1110","x-ms-request-id":"177c73b5-3cfd-46a3-9d43-5ba107de4632","Body":"{\r\n \"name\": \"javatest1vnetnctajm\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpvnxb/providers/Microsoft.Network/virtualNetworks/javatest1vnetnctajm\",\r\n \"etag\": \"W/\\\"53de366d-2db9-47ed-bc2d-21548f6d7305\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b242aca6-ca9e-4aee-933c-c9d40df8162d\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"javatest1subnnlfuin\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpvnxb/providers/Microsoft.Network/virtualNetworks/javatest1vnetnctajm/subnets/javatest1subnnlfuin\",\r\n \"etag\": \"W/\\\"53de366d-2db9-47ed-bc2d-21548f6d7305\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpvnxb/providers/Microsoft.Network/networkInterfaces/javatest1nicnzkkuf?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-ratelimit-remaining-subscription-writes":"1187","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"8459a2fc-8a40-40e7-a40e-282df31e3c9c","Date":"Mon, 19 Oct 2015 20:17:25 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T201725Z:8459a2fc-8a40-40e7-a40e-282df31e3c9c","Expires":"-1","Content-Length":"1361","Azure-AsyncOperation":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/southeastasia/operations/4ef7e133-2459-4bf7-a903-eabcfeedf369?api-version=2015-05-01-preview","x-ms-request-id":"4ef7e133-2459-4bf7-a903-eabcfeedf369","Body":"{\r\n \"name\": \"javatest1nicnzkkuf\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpvnxb/providers/Microsoft.Network/networkInterfaces/javatest1nicnzkkuf\",\r\n \"etag\": \"W/\\\"66cc4b87-cad4-460a-b85f-ed3096fa948a\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"00e67872-5f80-43ff-9e76-8024c29cb826\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"javatest1ipcnibmtg\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpvnxb/providers/Microsoft.Network/networkInterfaces/javatest1nicnzkkuf/ipConfigurations/javatest1ipcnibmtg\",\r\n \"etag\": \"W/\\\"66cc4b87-cad4-460a-b85f-ed3096fa948a\\\"\",\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/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpvnxb/providers/Microsoft.Network/virtualNetworks/javatest1vnetnctajm/subnets/javatest1subnnlfuin\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"},{"x-ms-version":"2015-05-01-preview","User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/southeastasia/operations/4ef7e133-2459-4bf7-a903-eabcfeedf369?api-version=2015-05-01-preview"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14962","StatusCode":"200","x-ms-correlation-request-id":"13920acb-8b04-4f68-9fcf-33347913448e","Date":"Mon, 19 Oct 2015 20:17:26 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T201726Z:13920acb-8b04-4f68-9fcf-33347913448e","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"29","x-ms-request-id":"5552f8aa-1654-478e-a0f1-865d3bc78fdc","Body":"{\r\n \"status\": \"Succeeded\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpvnxb/providers/Microsoft.Network/networkInterfaces/javatest1nicnzkkuf?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14984","StatusCode":"200","x-ms-correlation-request-id":"ae37ee95-befb-4ab1-aa5e-ea39c671c1ea","Date":"Mon, 19 Oct 2015 20:17:27 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","ETag":"W/\"66cc4b87-cad4-460a-b85f-ed3096fa948a\"","x-ms-routing-request-id":"WESTUS:20151019T201727Z:ae37ee95-befb-4ab1-aa5e-ea39c671c1ea","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1361","x-ms-request-id":"3c1832e3-ab50-43ac-87b6-5dec1a2742a7","Body":"{\r\n \"name\": \"javatest1nicnzkkuf\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpvnxb/providers/Microsoft.Network/networkInterfaces/javatest1nicnzkkuf\",\r\n \"etag\": \"W/\\\"66cc4b87-cad4-460a-b85f-ed3096fa948a\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"00e67872-5f80-43ff-9e76-8024c29cb826\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"javatest1ipcnibmtg\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpvnxb/providers/Microsoft.Network/networkInterfaces/javatest1nicnzkkuf/ipConfigurations/javatest1ipcnibmtg\",\r\n \"etag\": \"W/\\\"66cc4b87-cad4-460a-b85f-ed3096fa948a\\\"\",\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/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpvnxb/providers/Microsoft.Network/virtualNetworks/javatest1vnetnctajm/subnets/javatest1subnnlfuin\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpvnxb/providers/Microsoft.Compute/availabilitySets/javatest1asnbkffo?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","x-ms-ratelimit-remaining-subscription-writes":"1192","Pragma":"no-cache","StatusCode":"200","x-ms-correlation-request-id":"192f09ec-02d6-466d-b8a5-dade9657528d","Date":"Mon, 19 Oct 2015 20:17:31 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T201731Z:192f09ec-02d6-466d-b8a5-dade9657528d","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"387","x-ms-request-id":"e188a2c0-8978-42ae-8128-8a19c6956e1a","Body":"{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpvnxb/providers/Microsoft.Compute/availabilitySets/javatest1asnbkffo\",\r\n \"name\": \"javatest1asnbkffo\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpvnxb/providers/Microsoft.Compute/virtualMachines/javatestVMcampw?api-version=2015-06-15","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","x-ms-ratelimit-remaining-subscription-writes":"1191","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"8ac66837-ab40-4599-9235-cf9dce503b8e","Date":"Mon, 19 Oct 2015 20:17:33 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T201734Z:8ac66837-ab40-4599-9235-cf9dce503b8e","Expires":"-1","Content-Length":"3103","Azure-AsyncOperation":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/47d43fc0-254f-477c-bdef-2a7c9a97c7f2?api-version=2015-06-15","x-ms-request-id":"47d43fc0-254f-477c-bdef-2a7c9a97c7f2","Body":"{\r\n \"properties\": {\r\n \"vmId\": \"b9e22dde-489f-4522-b5d0-79869f72d044\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpvnxb/providers/Microsoft.Compute/availabilitySets/JAVATEST1ASNBKFFO\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"15.04\",\r\n \"version\": \"15.04.201504171\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1sansfyqi.blob.core.windows.net/javatest1connbvszo/ososvhd.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javatestVMcampw\",\r\n \"adminUsername\": \"Foo12\",\r\n \"customData\": \"ZWNobyAnSGVsbG8gV29ybGQn\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/Foo12/.ssh/authorized_keys\",\r\n \"keyData\": \"MIIDszCCApugAwIBAgIJALBV9YJCF/tAMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwHhcNMTUwMzIyMjI1NDQ5WhcNMTYwMzIxMjI1NDQ5WjBFMQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1TdGF0ZTEhMB8GA1UEChMYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMIIBIDANBgkqhkiG9w0BAQEFAAOCAQ0AMIIBCAKCAQEAxDC+OfmB+tQ+P1MLmuuW2hJLdcK8m4DLgAk5l8bQDNBcVezt+bt/ZFMsCHBhfTZG9O9yqMn8IRUh7/7jfQm6DmXCgtxj/uFiwT+F3out5uWvMV9SjFYvu9kJNXiDC2u3l4lHV8eHde6SbKiZB9Jji9FYQV4YiWrBa91j9I3hZzbTL0UCiJ+1PPoLRx/T1s9KT5Wn8m/z2EDrHWpetYu45OA7nzyIFOyQup5oWadWNnpk6HkCGutl9t9bcLdjXjXPm9wcy1yxIB3Dj/Y8Hnulr80GJlUtUboDm8TExGc4YaPJxdn0u5igo5gZc6qnqH/BMd1nsyICx6AZnKBXBycoSQIBI6OBpzCBpDAdBgNVHQ4EFgQUzWhrCCDsClANCGlKZ64rHp2BDn0wdQYDVR0jBG4wbIAUzWhrCCDsClANCGlKZ64rHp2BDn2hSaRHMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGSCCQCwVfWCQhf7QDAMBgNVHRMEBTADAQH/MA0GCSqGSIb3DQEBBQUAA4IBAQCUaJnX0aBzwBkbJrBS5YvkZnNKLdc4oHgC/Nsr/9pwXzFYYXkdqpTw2nygH0C0WuPVVrG3Y3EGx/UIGDtLbwMvZJhQN9mZH3oX+c3HGqBnXGuDRrtsfsK1ywAofx9amZfKNk/04/Rt3POdbyD1/AOADw2zMokbIapX+nMDUtD/Tew9+0qU9+dcFMrFE1N4utlrFHlrLFbiCA/eSegP6gOeu9mqZv7UHIz2oe6IQTw7zJF7xuBIzTYwjOCM197GKW7xc4GU4JZIN+faZ7njl/fxfUNdlqvgZUUnkfdrzU3PZPl0w9NuncgEje/PZ+YtZvIsnH7MLSPeIGNQwW6V2kc8\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"properties\":{},\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpvnxb/providers/Microsoft.Network/networkInterfaces/javatest1nicnzkkuf\"}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpvnxb/providers/Microsoft.Compute/virtualMachines/javatestVMcampw\",\r\n \"name\": \"javatestVMcampw\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/47d43fc0-254f-477c-bdef-2a7c9a97c7f2?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14983","StatusCode":"200","x-ms-correlation-request-id":"9593bf5d-a246-4d67-b576-7401192545af","Date":"Mon, 19 Oct 2015 20:17:34 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T201735Z:9593bf5d-a246-4d67-b576-7401192545af","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"2c9bf231-5003-40bf-9508-63ef9a39f1ef","Body":"{\r\n \"operationId\": \"47d43fc0-254f-477c-bdef-2a7c9a97c7f2\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:17:32.7729459+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpvnxb/providers/Microsoft.Compute/virtualMachines/javatestVMcampw?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14982","StatusCode":"200","x-ms-correlation-request-id":"f05544e0-cd17-474d-853e-7a39f441423a","Date":"Mon, 19 Oct 2015 20:17:35 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T201735Z:f05544e0-cd17-474d-853e-7a39f441423a","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"3103","x-ms-request-id":"f8e4405c-f6fe-4562-9618-6ed20eafc988","Body":"{\r\n \"properties\": {\r\n \"vmId\": \"b9e22dde-489f-4522-b5d0-79869f72d044\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpvnxb/providers/Microsoft.Compute/availabilitySets/JAVATEST1ASNBKFFO\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"15.04\",\r\n \"version\": \"15.04.201504171\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1sansfyqi.blob.core.windows.net/javatest1connbvszo/ososvhd.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javatestVMcampw\",\r\n \"adminUsername\": \"Foo12\",\r\n \"customData\": \"ZWNobyAnSGVsbG8gV29ybGQn\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/Foo12/.ssh/authorized_keys\",\r\n \"keyData\": \"MIIDszCCApugAwIBAgIJALBV9YJCF/tAMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwHhcNMTUwMzIyMjI1NDQ5WhcNMTYwMzIxMjI1NDQ5WjBFMQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1TdGF0ZTEhMB8GA1UEChMYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMIIBIDANBgkqhkiG9w0BAQEFAAOCAQ0AMIIBCAKCAQEAxDC+OfmB+tQ+P1MLmuuW2hJLdcK8m4DLgAk5l8bQDNBcVezt+bt/ZFMsCHBhfTZG9O9yqMn8IRUh7/7jfQm6DmXCgtxj/uFiwT+F3out5uWvMV9SjFYvu9kJNXiDC2u3l4lHV8eHde6SbKiZB9Jji9FYQV4YiWrBa91j9I3hZzbTL0UCiJ+1PPoLRx/T1s9KT5Wn8m/z2EDrHWpetYu45OA7nzyIFOyQup5oWadWNnpk6HkCGutl9t9bcLdjXjXPm9wcy1yxIB3Dj/Y8Hnulr80GJlUtUboDm8TExGc4YaPJxdn0u5igo5gZc6qnqH/BMd1nsyICx6AZnKBXBycoSQIBI6OBpzCBpDAdBgNVHQ4EFgQUzWhrCCDsClANCGlKZ64rHp2BDn0wdQYDVR0jBG4wbIAUzWhrCCDsClANCGlKZ64rHp2BDn2hSaRHMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGSCCQCwVfWCQhf7QDAMBgNVHRMEBTADAQH/MA0GCSqGSIb3DQEBBQUAA4IBAQCUaJnX0aBzwBkbJrBS5YvkZnNKLdc4oHgC/Nsr/9pwXzFYYXkdqpTw2nygH0C0WuPVVrG3Y3EGx/UIGDtLbwMvZJhQN9mZH3oX+c3HGqBnXGuDRrtsfsK1ywAofx9amZfKNk/04/Rt3POdbyD1/AOADw2zMokbIapX+nMDUtD/Tew9+0qU9+dcFMrFE1N4utlrFHlrLFbiCA/eSegP6gOeu9mqZv7UHIz2oe6IQTw7zJF7xuBIzTYwjOCM197GKW7xc4GU4JZIN+faZ7njl/fxfUNdlqvgZUUnkfdrzU3PZPl0w9NuncgEje/PZ+YtZvIsnH7MLSPeIGNQwW6V2kc8\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"properties\":{},\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpvnxb/providers/Microsoft.Network/networkInterfaces/javatest1nicnzkkuf\"}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpvnxb/providers/Microsoft.Compute/virtualMachines/javatestVMcampw\",\r\n \"name\": \"javatestVMcampw\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpvnxb/providers/Microsoft.Compute/virtualMachines/javatestVMcampw?$expand=instanceView&api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14981","StatusCode":"200","x-ms-correlation-request-id":"ef5cd7bb-8fb2-4ebf-bac4-8db7f74c4f0b","Date":"Mon, 19 Oct 2015 20:17:35 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T201735Z:ef5cd7bb-8fb2-4ebf-bac4-8db7f74c4f0b","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"4033","x-ms-request-id":"b5366cd0-bf8b-40e7-8ad9-18316ddcf6cf","Body":"{\r\n \"properties\": {\r\n \"vmId\": \"b9e22dde-489f-4522-b5d0-79869f72d044\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpvnxb/providers/Microsoft.Compute/availabilitySets/JAVATEST1ASNBKFFO\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"15.04\",\r\n \"version\": \"15.04.201504171\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"osdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1sansfyqi.blob.core.windows.net/javatest1connbvszo/ososvhd.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javatestVMcampw\",\r\n \"adminUsername\": \"Foo12\",\r\n \"customData\": \"ZWNobyAnSGVsbG8gV29ybGQn\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/Foo12/.ssh/authorized_keys\",\r\n \"keyData\": \"MIIDszCCApugAwIBAgIJALBV9YJCF/tAMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQwHhcNMTUwMzIyMjI1NDQ5WhcNMTYwMzIxMjI1NDQ5WjBFMQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1TdGF0ZTEhMB8GA1UEChMYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMIIBIDANBgkqhkiG9w0BAQEFAAOCAQ0AMIIBCAKCAQEAxDC+OfmB+tQ+P1MLmuuW2hJLdcK8m4DLgAk5l8bQDNBcVezt+bt/ZFMsCHBhfTZG9O9yqMn8IRUh7/7jfQm6DmXCgtxj/uFiwT+F3out5uWvMV9SjFYvu9kJNXiDC2u3l4lHV8eHde6SbKiZB9Jji9FYQV4YiWrBa91j9I3hZzbTL0UCiJ+1PPoLRx/T1s9KT5Wn8m/z2EDrHWpetYu45OA7nzyIFOyQup5oWadWNnpk6HkCGutl9t9bcLdjXjXPm9wcy1yxIB3Dj/Y8Hnulr80GJlUtUboDm8TExGc4YaPJxdn0u5igo5gZc6qnqH/BMd1nsyICx6AZnKBXBycoSQIBI6OBpzCBpDAdBgNVHQ4EFgQUzWhrCCDsClANCGlKZ64rHp2BDn0wdQYDVR0jBG4wbIAUzWhrCCDsClANCGlKZ64rHp2BDn2hSaRHMEUxCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGSCCQCwVfWCQhf7QDAMBgNVHRMEBTADAQH/MA0GCSqGSIb3DQEBBQUAA4IBAQCUaJnX0aBzwBkbJrBS5YvkZnNKLdc4oHgC/Nsr/9pwXzFYYXkdqpTw2nygH0C0WuPVVrG3Y3EGx/UIGDtLbwMvZJhQN9mZH3oX+c3HGqBnXGuDRrtsfsK1ywAofx9amZfKNk/04/Rt3POdbyD1/AOADw2zMokbIapX+nMDUtD/Tew9+0qU9+dcFMrFE1N4utlrFHlrLFbiCA/eSegP6gOeu9mqZv7UHIz2oe6IQTw7zJF7xuBIzTYwjOCM197GKW7xc4GU4JZIN+faZ7njl/fxfUNdlqvgZUUnkfdrzU3PZPl0w9NuncgEje/PZ+YtZvIsnH7MLSPeIGNQwW6V2kc8\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"properties\":{},\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpvnxb/providers/Microsoft.Network/networkInterfaces/javatest1nicnzkkuf\"}]},\r\n \"provisioningState\": \"Creating\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"Unknown\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n \"level\": \"Warning\",\r\n \"displayStatus\": \"Not Ready\",\r\n \"message\": \"VM status blob is found but not yet populated.\",\r\n \"time\": \"2015-10-19T20:17:35+00:00\"\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"osdisk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2015-10-19T20:17:33.9917157+00:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/creating\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Creating\"\r\n }\r\n ]\r\n }\r\n },\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpvnxb/providers/Microsoft.Compute/virtualMachines/javatestVMcampw\",\r\n \"name\": \"javatestVMcampw\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"}] \ No newline at end of file diff --git a/resource-management/azure-mgmt-utility/src/test/resources/session-records/testVMWithMultipleNic.json b/resource-management/azure-mgmt-utility/src/test/resources/session-records/testVMWithMultipleNic.json index 25ab2de2d3a8..947fdaee89c5 100644 --- a/resource-management/azure-mgmt-utility/src/test/resources/session-records/testVMWithMultipleNic.json +++ b/resource-management/azure-mgmt-utility/src/test/resources/session-records/testVMWithMultipleNic.json @@ -1 +1 @@ -[{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/javatestrgnkekow?api-version=2014-04-01-preview","Content-Type":"application/json; charset=utf-8"},{"x-ms-ratelimit-remaining-subscription-writes":"1199","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"ec6680b1-ba2f-4b5f-9a0e-5d36d7b5a462","Date":"Tue, 25 Aug 2015 23:17:34 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T231735Z:ec6680b1-ba2f-4b5f-9a0e-5d36d7b5a462","Expires":"-1","Content-Length":"192","x-ms-request-id":"ec6680b1-ba2f-4b5f-9a0e-5d36d7b5a462","Body":"{\"id\":\"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnkekow\",\"name\":\"javatestrgnkekow\",\"location\":\"southeastasia\",\"properties\":{\"provisioningState\":\"Succeeded\"}}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnkekow/providers/Microsoft.Network/virtualnetworks/javatest1vnetnghcbr?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-ratelimit-remaining-subscription-writes":"1199","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"978d62d9-e0d0-4107-bc3e-8860107f944a","Date":"Tue, 25 Aug 2015 23:17:39 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"10","x-ms-routing-request-id":"WESTUS:20150825T231740Z:978d62d9-e0d0-4107-bc3e-8860107f944a","Expires":"-1","Content-Length":"1060","Azure-AsyncOperation":"https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/3d202e35-a219-4493-91e9-5a0bdbfe93b3?api-version=2015-05-01-preview","x-ms-request-id":"3d202e35-a219-4493-91e9-5a0bdbfe93b3","Body":"{\r\n \"name\": \"javatest1vnetnghcbr\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnkekow/providers/Microsoft.Network/virtualNetworks/javatest1vnetnghcbr\",\r\n \"etag\": \"W/\\\"6291ff52-3d60-4e5e-81ed-db48148c3848\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"2dae767b-5733-4554-a729-41c771acc41f\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"javatest1subnnzrkzr\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnkekow/providers/Microsoft.Network/virtualNetworks/javatest1vnetnghcbr/subnets/javatest1subnnzrkzr\",\r\n \"etag\": \"W/\\\"6291ff52-3d60-4e5e-81ed-db48148c3848\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"x-ms-version":"2015-05-01-preview","User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/3d202e35-a219-4493-91e9-5a0bdbfe93b3?api-version=2015-05-01-preview"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14999","StatusCode":"200","x-ms-correlation-request-id":"f907486d-9f54-4eff-9597-6fcbfda12bf6","Date":"Tue, 25 Aug 2015 23:17:40 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T231741Z:f907486d-9f54-4eff-9597-6fcbfda12bf6","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"29","x-ms-request-id":"386fc0db-1b4e-456a-a8af-43ccc0096eda","Body":"{\r\n \"status\": \"Succeeded\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnkekow/providers/Microsoft.Network/virtualnetworks/javatest1vnetnghcbr?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14967","StatusCode":"200","x-ms-correlation-request-id":"4694c720-a456-464f-833e-ba9b5f918baa","Date":"Tue, 25 Aug 2015 23:17:42 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","ETag":"W/\"63ed60ef-1b2e-4f28-8e24-2b946fdc4ebf\"","x-ms-routing-request-id":"WESTUS:20150825T231742Z:4694c720-a456-464f-833e-ba9b5f918baa","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1062","x-ms-request-id":"80ba38de-896e-4a53-b347-55d90c3c6d2f","Body":"{\r\n \"name\": \"javatest1vnetnghcbr\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnkekow/providers/Microsoft.Network/virtualNetworks/javatest1vnetnghcbr\",\r\n \"etag\": \"W/\\\"63ed60ef-1b2e-4f28-8e24-2b946fdc4ebf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2dae767b-5733-4554-a729-41c771acc41f\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"javatest1subnnzrkzr\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnkekow/providers/Microsoft.Network/virtualNetworks/javatest1vnetnghcbr/subnets/javatest1subnnzrkzr\",\r\n \"etag\": \"W/\\\"63ed60ef-1b2e-4f28-8e24-2b946fdc4ebf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnkekow/providers/Microsoft.Network/networkInterfaces/javatest1nicnrbsmf?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-ratelimit-remaining-subscription-writes":"1199","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"084ccbf9-5096-4013-9057-a2e750bfc0e5","Date":"Tue, 25 Aug 2015 23:17:48 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T231748Z:084ccbf9-5096-4013-9057-a2e750bfc0e5","Expires":"-1","Content-Length":"1311","Azure-AsyncOperation":"https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/e7ad456a-d2bc-4245-8b91-e383099b1b39?api-version=2015-05-01-preview","x-ms-request-id":"e7ad456a-d2bc-4245-8b91-e383099b1b39","Body":"{\r\n \"name\": \"javatest1nicnrbsmf\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnkekow/providers/Microsoft.Network/networkInterfaces/javatest1nicnrbsmf\",\r\n \"etag\": \"W/\\\"cd503c7e-b8c4-4f32-9f9a-a7c873a81358\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e90073c1-7223-49c9-b2ec-f1669a0acdbc\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"javatest1ipcnxhdsf\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnkekow/providers/Microsoft.Network/networkInterfaces/javatest1nicnrbsmf/ipConfigurations/javatest1ipcnxhdsf\",\r\n \"etag\": \"W/\\\"cd503c7e-b8c4-4f32-9f9a-a7c873a81358\\\"\",\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnkekow/providers/Microsoft.Network/virtualNetworks/javatest1vnetnghcbr/subnets/javatest1subnnzrkzr\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"x-ms-version":"2015-05-01-preview","User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/e7ad456a-d2bc-4245-8b91-e383099b1b39?api-version=2015-05-01-preview"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14999","StatusCode":"200","x-ms-correlation-request-id":"56deb0be-c7d0-4fa3-9e1d-2bf8b8483b65","Date":"Tue, 25 Aug 2015 23:17:48 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T231749Z:56deb0be-c7d0-4fa3-9e1d-2bf8b8483b65","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"29","x-ms-request-id":"00be6434-2815-4fd6-a8d1-5bfe5e4647ad","Body":"{\r\n \"status\": \"Succeeded\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnkekow/providers/Microsoft.Network/networkInterfaces/javatest1nicnrbsmf?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14966","StatusCode":"200","x-ms-correlation-request-id":"b0214351-e936-4b29-965c-0676b63b351a","Date":"Tue, 25 Aug 2015 23:17:50 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","ETag":"W/\"cd503c7e-b8c4-4f32-9f9a-a7c873a81358\"","x-ms-routing-request-id":"WESTUS:20150825T231750Z:b0214351-e936-4b29-965c-0676b63b351a","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1311","x-ms-request-id":"aa661bd4-9afd-452b-8a55-67b1f97fd832","Body":"{\r\n \"name\": \"javatest1nicnrbsmf\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnkekow/providers/Microsoft.Network/networkInterfaces/javatest1nicnrbsmf\",\r\n \"etag\": \"W/\\\"cd503c7e-b8c4-4f32-9f9a-a7c873a81358\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e90073c1-7223-49c9-b2ec-f1669a0acdbc\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"javatest1ipcnxhdsf\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnkekow/providers/Microsoft.Network/networkInterfaces/javatest1nicnrbsmf/ipConfigurations/javatest1ipcnxhdsf\",\r\n \"etag\": \"W/\\\"cd503c7e-b8c4-4f32-9f9a-a7c873a81358\\\"\",\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnkekow/providers/Microsoft.Network/virtualNetworks/javatest1vnetnghcbr/subnets/javatest1subnnzrkzr\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnkekow/providers/Microsoft.Network/networkInterfaces/javatest2nicncrnah?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-ratelimit-remaining-subscription-writes":"1198","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"4bbd8fd1-3a97-4393-8099-b5705bbde1bf","Date":"Tue, 25 Aug 2015 23:17:53 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T231753Z:4bbd8fd1-3a97-4393-8099-b5705bbde1bf","Expires":"-1","Content-Length":"1311","Azure-AsyncOperation":"https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/4aee4e5e-1add-46d4-b7bc-83369116d8f0?api-version=2015-05-01-preview","x-ms-request-id":"4aee4e5e-1add-46d4-b7bc-83369116d8f0","Body":"{\r\n \"name\": \"javatest2nicncrnah\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnkekow/providers/Microsoft.Network/networkInterfaces/javatest2nicncrnah\",\r\n \"etag\": \"W/\\\"e87014f5-df5f-4c93-a3ac-2013bb7a329f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b075125d-fa10-4d8f-aff8-5875814d2267\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"javatest2ipcnauwef\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnkekow/providers/Microsoft.Network/networkInterfaces/javatest2nicncrnah/ipConfigurations/javatest2ipcnauwef\",\r\n \"etag\": \"W/\\\"e87014f5-df5f-4c93-a3ac-2013bb7a329f\\\"\",\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnkekow/providers/Microsoft.Network/virtualNetworks/javatest1vnetnghcbr/subnets/javatest1subnnzrkzr\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"x-ms-version":"2015-05-01-preview","User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/4aee4e5e-1add-46d4-b7bc-83369116d8f0?api-version=2015-05-01-preview"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14914","StatusCode":"200","x-ms-correlation-request-id":"77885b67-8519-4320-ab38-8b90301a8831","Date":"Tue, 25 Aug 2015 23:17:54 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T231754Z:77885b67-8519-4320-ab38-8b90301a8831","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"29","x-ms-request-id":"c14e3002-9cef-4b09-bf36-5a95d36594bd","Body":"{\r\n \"status\": \"Succeeded\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnkekow/providers/Microsoft.Network/networkInterfaces/javatest2nicncrnah?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14965","StatusCode":"200","x-ms-correlation-request-id":"70dafea0-898f-4297-99fe-6decdb06247c","Date":"Tue, 25 Aug 2015 23:17:54 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","ETag":"W/\"e87014f5-df5f-4c93-a3ac-2013bb7a329f\"","x-ms-routing-request-id":"WESTUS:20150825T231754Z:70dafea0-898f-4297-99fe-6decdb06247c","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1311","x-ms-request-id":"e1647ead-8088-4511-aeb7-8002d4f5f9af","Body":"{\r\n \"name\": \"javatest2nicncrnah\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnkekow/providers/Microsoft.Network/networkInterfaces/javatest2nicncrnah\",\r\n \"etag\": \"W/\\\"e87014f5-df5f-4c93-a3ac-2013bb7a329f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b075125d-fa10-4d8f-aff8-5875814d2267\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"javatest2ipcnauwef\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnkekow/providers/Microsoft.Network/networkInterfaces/javatest2nicncrnah/ipConfigurations/javatest2ipcnauwef\",\r\n \"etag\": \"W/\\\"e87014f5-df5f-4c93-a3ac-2013bb7a329f\\\"\",\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnkekow/providers/Microsoft.Network/virtualNetworks/javatest1vnetnghcbr/subnets/javatest1subnnzrkzr\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/javatestrgnkekow?api-version=2014-04-01-preview","Content-Type":"application/json; charset=utf-8"},{"Transfer-Encoding":"chunked","x-ms-ratelimit-remaining-subscription-writes":"1197","Pragma":"no-cache","StatusCode":"200","x-ms-correlation-request-id":"51c5ae48-9c2d-4710-aeb9-5d2bf6c53212","Date":"Tue, 25 Aug 2015 23:17:55 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T231755Z:51c5ae48-9c2d-4710-aeb9-5d2bf6c53212","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"192","x-ms-request-id":"51c5ae48-9c2d-4710-aeb9-5d2bf6c53212","Body":"{\"id\":\"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnkekow\",\"name\":\"javatestrgnkekow\",\"location\":\"southeastasia\",\"properties\":{\"provisioningState\":\"Succeeded\"}}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnkekow/providers/Microsoft.Storage/storageAccounts/javatest1sanamyju?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-ratelimit-remaining-subscription-writes":"1198","Pragma":"no-cache","StatusCode":"202","x-ms-correlation-request-id":"570910d4-a5d0-4353-8403-159dcc0028f3","Date":"Tue, 25 Aug 2015 23:18:00 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"25","x-ms-routing-request-id":"WESTUS:20150825T231801Z:570910d4-a5d0-4353-8403-159dcc0028f3","Expires":"-1","Content-Length":"4","x-ms-request-id":"54bbf805-75cb-437d-96a2-6fd65d752891","Body":"null","Content-Type":"application/json; charset=utf-8","Location":"https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/54bbf805-75cb-437d-96a2-6fd65d752891?monitor=true&api-version=2015-05-01-preview"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/54bbf805-75cb-437d-96a2-6fd65d752891?monitor=true&api-version=2015-05-01-preview"},{"Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14998","StatusCode":"202","x-ms-correlation-request-id":"7ed4fcf5-1a53-48ab-a88a-e1309000ca6b","Date":"Tue, 25 Aug 2015 23:18:01 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"25","x-ms-routing-request-id":"WESTUS:20150825T231801Z:7ed4fcf5-1a53-48ab-a88a-e1309000ca6b","Expires":"-1","Content-Length":"4","x-ms-request-id":"12eac7e7-cfd3-4dfa-8ce3-2dd2991db89a","Body":"null","Content-Type":"application/json; charset=utf-8","Location":"https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/54bbf805-75cb-437d-96a2-6fd65d752891?monitor=true&api-version=2015-05-01-preview"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/54bbf805-75cb-437d-96a2-6fd65d752891?monitor=true&api-version=2015-05-01-preview"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14997","StatusCode":"200","x-ms-correlation-request-id":"118c49a6-0e04-40d4-ba4f-2aac33e2df32","Date":"Tue, 25 Aug 2015 23:18:26 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T231826Z:118c49a6-0e04-40d4-ba4f-2aac33e2df32","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"73","x-ms-request-id":"912bfc5a-0729-4d1a-9c5d-17faeba7a34e","Body":"{\"properties\":{\"accountType\":\"Standard_GRS\"},\"location\":\"Southeast Asia\"}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnkekow/providers/Microsoft.Storage/storageAccounts?api-version=2015-05-01-preview"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14999","StatusCode":"200","x-ms-correlation-request-id":"136b812d-1329-4440-b272-b87e165469b1","Date":"Tue, 25 Aug 2015 23:18:27 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T231827Z:136b812d-1329-4440-b272-b87e165469b1","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"728","x-ms-request-id":"7a2798fb-a7b3-48e5-9a8e-8963b270d998","Body":"{\"value\":[{\"id\":\"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnkekow/providers/Microsoft.Storage/storageAccounts/javatest1sanamyju\",\"name\":\"javatest1sanamyju\",\"location\":\"Southeast Asia\",\"type\":\"Microsoft.Storage/storageAccounts\",\"properties\":{\"provisioningState\":\"Succeeded\",\"accountType\":\"Standard_GRS\",\"primaryEndpoints\":{\"blob\":\"https://javatest1sanamyju.blob.core.windows.net/\",\"queue\":\"https://javatest1sanamyju.queue.core.windows.net/\",\"table\":\"https://javatest1sanamyju.table.core.windows.net/\"},\"primaryLocation\":\"Southeast Asia\",\"statusOfPrimary\":\"Available\",\"secondaryLocation\":\"East Asia\",\"statusOfSecondary\":\"Available\",\"creationTime\":\"2015-08-25T23:17:57.6339931Z\"}}],\"nextLink\":\"\"}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnkekow/providers/Microsoft.Compute/availabilitySets/javatest1asngitjf?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","x-ms-ratelimit-remaining-subscription-writes":"1198","Pragma":"no-cache","StatusCode":"200","x-ms-correlation-request-id":"399a86e6-90bc-4f2b-8b68-84b4cd350df9","Date":"Tue, 25 Aug 2015 23:18:31 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T231831Z:399a86e6-90bc-4f2b-8b68-84b4cd350df9","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"387","x-ms-request-id":"e3e24f63-0488-4c5f-b4eb-c075b530a782","Body":"{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnkekow/providers/Microsoft.Compute/availabilitySets/javatest1asngitjf\",\r\n \"name\": \"javatest1asngitjf\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnkekow/providers/Microsoft.Compute/virtualMachines/javatestVMkrebr?api-version=2015-06-15","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","x-ms-ratelimit-remaining-subscription-writes":"1197","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"70749cd4-03f1-4b9d-84f2-fc1fb97c5426","Date":"Tue, 25 Aug 2015 23:18:34 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T231834Z:70749cd4-03f1-4b9d-84f2-fc1fb97c5426","Expires":"-1","Content-Length":"1843","Azure-AsyncOperation":"https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/184821a2-070f-425d-b3d9-0b30be33f894?api-version=2015-06-15","x-ms-request-id":"184821a2-070f-425d-b3d9-0b30be33f894","Body":"{\r\n \"properties\": {\r\n \"vmId\": \"1e156aa9-9113-4ee2-9eca-5a3306491dcd\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnkekow/providers/Microsoft.Compute/availabilitySets/JAVATEST1ASNGITJF\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1sanamyju.blob.core.windows.net/javatest1connlfouo/ososvhd.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javatestVMkrebr\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"properties\":{\"primary\":false},\"id\":\"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnkekow/providers/Microsoft.Network/networkInterfaces/javatest1nicnrbsmf\"},{\"properties\":{\"primary\":true},\"id\":\"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnkekow/providers/Microsoft.Network/networkInterfaces/javatest2nicncrnah\"}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnkekow/providers/Microsoft.Compute/virtualMachines/javatestVMkrebr\",\r\n \"name\": \"javatestVMkrebr\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/184821a2-070f-425d-b3d9-0b30be33f894?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14999","StatusCode":"200","x-ms-correlation-request-id":"43f73f24-73e4-4367-bc94-f69c139d586a","Date":"Tue, 25 Aug 2015 23:18:35 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T231835Z:43f73f24-73e4-4367-bc94-f69c139d586a","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"a65fd1c2-de0d-4d8f-9261-0afcb725862a","Body":"{\r\n \"operationId\": \"184821a2-070f-425d-b3d9-0b30be33f894\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-25T23:18:32.7788298+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnkekow/providers/Microsoft.Compute/virtualMachines/javatestVMkrebr?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14998","StatusCode":"200","x-ms-correlation-request-id":"245222a4-9cdf-4e83-84e5-ee8e199d999f","Date":"Tue, 25 Aug 2015 23:18:35 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T231836Z:245222a4-9cdf-4e83-84e5-ee8e199d999f","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1843","x-ms-request-id":"2974ce76-d83d-422d-b176-3e1fd3426c96","Body":"{\r\n \"properties\": {\r\n \"vmId\": \"1e156aa9-9113-4ee2-9eca-5a3306491dcd\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnkekow/providers/Microsoft.Compute/availabilitySets/JAVATEST1ASNGITJF\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1sanamyju.blob.core.windows.net/javatest1connlfouo/ososvhd.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javatestVMkrebr\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"properties\":{\"primary\":false},\"id\":\"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnkekow/providers/Microsoft.Network/networkInterfaces/javatest1nicnrbsmf\"},{\"properties\":{\"primary\":true},\"id\":\"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnkekow/providers/Microsoft.Network/networkInterfaces/javatest2nicncrnah\"}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnkekow/providers/Microsoft.Compute/virtualMachines/javatestVMkrebr\",\r\n \"name\": \"javatestVMkrebr\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnkekow/providers/Microsoft.Compute/virtualMachines/javatestVMkrebr?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","x-ms-ratelimit-remaining-subscription-writes":"1196","Pragma":"no-cache","StatusCode":"200","x-ms-correlation-request-id":"af6415dc-0ea6-4fa6-9ba4-f1cf6306878f","Date":"Tue, 25 Aug 2015 23:18:36 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T231836Z:af6415dc-0ea6-4fa6-9ba4-f1cf6306878f","Vary":"Accept-Encoding","Expires":"-1","Azure-AsyncOperation":"https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/686904d6-fd15-425c-9f8b-626009d40c13?api-version=2015-06-15","Content-Length":"1843","x-ms-request-id":"686904d6-fd15-425c-9f8b-626009d40c13","Body":"{\r\n \"properties\": {\r\n \"vmId\": \"1e156aa9-9113-4ee2-9eca-5a3306491dcd\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnkekow/providers/Microsoft.Compute/availabilitySets/JAVATEST1ASNGITJF\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1sanamyju.blob.core.windows.net/javatest1connlfouo/ososvhd.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javatestVMkrebr\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"properties\":{\"primary\":false},\"id\":\"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnkekow/providers/Microsoft.Network/networkInterfaces/javatest1nicnrbsmf\"},{\"properties\":{\"primary\":true},\"id\":\"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnkekow/providers/Microsoft.Network/networkInterfaces/javatest2nicncrnah\"}]},\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnkekow/providers/Microsoft.Compute/virtualMachines/javatestVMkrebr\",\r\n \"name\": \"javatestVMkrebr\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/686904d6-fd15-425c-9f8b-626009d40c13?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14911","StatusCode":"200","x-ms-correlation-request-id":"900953d6-a5e7-46e5-9086-d91e553e188d","Date":"Tue, 25 Aug 2015 23:18:37 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T231837Z:900953d6-a5e7-46e5-9086-d91e553e188d","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"140","x-ms-request-id":"50eae79b-67f5-4343-a96e-ada01b94fec8","Body":"{\r\n \"operationId\": \"686904d6-fd15-425c-9f8b-626009d40c13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-25T23:18:35.731957+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/686904d6-fd15-425c-9f8b-626009d40c13?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14908","StatusCode":"200","x-ms-correlation-request-id":"fbbfa55a-e229-4e91-84f5-b69d1c51cd67","Date":"Tue, 25 Aug 2015 23:19:07 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T231908Z:fbbfa55a-e229-4e91-84f5-b69d1c51cd67","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"140","x-ms-request-id":"6b7eed86-5b29-46bb-a23f-6d384e7a5c55","Body":"{\r\n \"operationId\": \"686904d6-fd15-425c-9f8b-626009d40c13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-25T23:18:35.731957+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/686904d6-fd15-425c-9f8b-626009d40c13?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14907","StatusCode":"200","x-ms-correlation-request-id":"4cd62a0f-40be-4d10-b0ed-ee0f929a9be8","Date":"Tue, 25 Aug 2015 23:19:19 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T231919Z:4cd62a0f-40be-4d10-b0ed-ee0f929a9be8","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"140","x-ms-request-id":"3114f365-e926-45db-bd00-dda52bb7a61f","Body":"{\r\n \"operationId\": \"686904d6-fd15-425c-9f8b-626009d40c13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-25T23:18:35.731957+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/686904d6-fd15-425c-9f8b-626009d40c13?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14906","StatusCode":"200","x-ms-correlation-request-id":"722aa8c1-2e4a-4667-9544-9f6249d89c32","Date":"Tue, 25 Aug 2015 23:19:29 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T231930Z:722aa8c1-2e4a-4667-9544-9f6249d89c32","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"140","x-ms-request-id":"fabc29aa-a186-45cb-a949-8890f2359ff6","Body":"{\r\n \"operationId\": \"686904d6-fd15-425c-9f8b-626009d40c13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-25T23:18:35.731957+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/686904d6-fd15-425c-9f8b-626009d40c13?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14905","StatusCode":"200","x-ms-correlation-request-id":"2a8b0212-3b24-4fb3-9087-b2dc12da1cee","Date":"Tue, 25 Aug 2015 23:19:40 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T231940Z:2a8b0212-3b24-4fb3-9087-b2dc12da1cee","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"140","x-ms-request-id":"95168b6f-21b9-46e5-b66b-f277a8397b6d","Body":"{\r\n \"operationId\": \"686904d6-fd15-425c-9f8b-626009d40c13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-25T23:18:35.731957+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/686904d6-fd15-425c-9f8b-626009d40c13?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14904","StatusCode":"200","x-ms-correlation-request-id":"5dee8dfd-7243-4383-9257-66b17eb59ea8","Date":"Tue, 25 Aug 2015 23:19:51 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T231951Z:5dee8dfd-7243-4383-9257-66b17eb59ea8","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"140","x-ms-request-id":"2ccc1b0b-9793-4262-bed8-8f0e4b1ed0d3","Body":"{\r\n \"operationId\": \"686904d6-fd15-425c-9f8b-626009d40c13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-25T23:18:35.731957+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/686904d6-fd15-425c-9f8b-626009d40c13?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14910","StatusCode":"200","x-ms-correlation-request-id":"ef7c158a-27ab-401f-8127-e9de60056e1f","Date":"Tue, 25 Aug 2015 23:20:01 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T232002Z:ef7c158a-27ab-401f-8127-e9de60056e1f","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"140","x-ms-request-id":"4cd9476c-8150-4325-99bb-38b70c7c43ce","Body":"{\r\n \"operationId\": \"686904d6-fd15-425c-9f8b-626009d40c13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-25T23:18:35.731957+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/686904d6-fd15-425c-9f8b-626009d40c13?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14907","StatusCode":"200","x-ms-correlation-request-id":"9517e9b9-a1ad-4b5e-a80f-c1c5dc3ec71b","Date":"Tue, 25 Aug 2015 23:20:12 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T232013Z:9517e9b9-a1ad-4b5e-a80f-c1c5dc3ec71b","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"140","x-ms-request-id":"0f95690e-930f-4478-b9b2-47ea18ec6272","Body":"{\r\n \"operationId\": \"686904d6-fd15-425c-9f8b-626009d40c13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-25T23:18:35.731957+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/686904d6-fd15-425c-9f8b-626009d40c13?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14906","StatusCode":"200","x-ms-correlation-request-id":"c4e2dc2a-9746-4d58-95e0-e4bd8cdc8eda","Date":"Tue, 25 Aug 2015 23:20:24 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T232024Z:c4e2dc2a-9746-4d58-95e0-e4bd8cdc8eda","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"140","x-ms-request-id":"ffb36926-cba1-4155-bf22-defdd636466c","Body":"{\r\n \"operationId\": \"686904d6-fd15-425c-9f8b-626009d40c13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-25T23:18:35.731957+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/686904d6-fd15-425c-9f8b-626009d40c13?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14905","StatusCode":"200","x-ms-correlation-request-id":"d681e87a-454b-4424-bd7b-e60d096ff714","Date":"Tue, 25 Aug 2015 23:20:35 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T232035Z:d681e87a-454b-4424-bd7b-e60d096ff714","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"140","x-ms-request-id":"5afd2ee8-b370-459a-8d8b-1a12f0492f4c","Body":"{\r\n \"operationId\": \"686904d6-fd15-425c-9f8b-626009d40c13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-25T23:18:35.731957+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/686904d6-fd15-425c-9f8b-626009d40c13?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14904","StatusCode":"200","x-ms-correlation-request-id":"cb895576-ab0c-47e6-9c7a-d12ce80e0500","Date":"Tue, 25 Aug 2015 23:20:45 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T232046Z:cb895576-ab0c-47e6-9c7a-d12ce80e0500","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"140","x-ms-request-id":"1b100bc0-5308-4b37-ac69-ae04bdfdfa72","Body":"{\r\n \"operationId\": \"686904d6-fd15-425c-9f8b-626009d40c13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-25T23:18:35.731957+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/686904d6-fd15-425c-9f8b-626009d40c13?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14903","StatusCode":"200","x-ms-correlation-request-id":"7bbfcabc-1459-42ce-9f8a-9b656fd5a8a1","Date":"Tue, 25 Aug 2015 23:20:56 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T232057Z:7bbfcabc-1459-42ce-9f8a-9b656fd5a8a1","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"140","x-ms-request-id":"a5460e70-c3f0-48ea-b7aa-8db737f14ee7","Body":"{\r\n \"operationId\": \"686904d6-fd15-425c-9f8b-626009d40c13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-25T23:18:35.731957+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/686904d6-fd15-425c-9f8b-626009d40c13?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14901","StatusCode":"200","x-ms-correlation-request-id":"41dd3d14-2164-4068-8f89-658187e01d5d","Date":"Tue, 25 Aug 2015 23:21:07 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T232107Z:41dd3d14-2164-4068-8f89-658187e01d5d","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"140","x-ms-request-id":"72d4a5ea-7fda-4845-964d-a23d21af81aa","Body":"{\r\n \"operationId\": \"686904d6-fd15-425c-9f8b-626009d40c13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-25T23:18:35.731957+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/686904d6-fd15-425c-9f8b-626009d40c13?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14899","StatusCode":"200","x-ms-correlation-request-id":"1f83f124-75e3-4d7c-8233-f187e79a0565","Date":"Tue, 25 Aug 2015 23:21:17 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T232118Z:1f83f124-75e3-4d7c-8233-f187e79a0565","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"140","x-ms-request-id":"db819024-a5e5-420c-8d09-c1b8f59ffcc9","Body":"{\r\n \"operationId\": \"686904d6-fd15-425c-9f8b-626009d40c13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-25T23:18:35.731957+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/686904d6-fd15-425c-9f8b-626009d40c13?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14898","StatusCode":"200","x-ms-correlation-request-id":"5fd67584-6583-4de8-ba06-549962fdd64e","Date":"Tue, 25 Aug 2015 23:21:29 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T232129Z:5fd67584-6583-4de8-ba06-549962fdd64e","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"140","x-ms-request-id":"e74286f4-690c-4ac9-8ec1-00f3e9695715","Body":"{\r\n \"operationId\": \"686904d6-fd15-425c-9f8b-626009d40c13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-25T23:18:35.731957+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/686904d6-fd15-425c-9f8b-626009d40c13?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14897","StatusCode":"200","x-ms-correlation-request-id":"83e9c655-a3e1-43e5-9974-22a7261f8e86","Date":"Tue, 25 Aug 2015 23:21:40 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T232140Z:83e9c655-a3e1-43e5-9974-22a7261f8e86","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"140","x-ms-request-id":"86f2369f-c346-40a3-a94b-c465dbd2a977","Body":"{\r\n \"operationId\": \"686904d6-fd15-425c-9f8b-626009d40c13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-25T23:18:35.731957+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/686904d6-fd15-425c-9f8b-626009d40c13?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14896","StatusCode":"200","x-ms-correlation-request-id":"6f56afd1-d284-42e3-be2c-6a6f83d78a8f","Date":"Tue, 25 Aug 2015 23:21:50 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T232151Z:6f56afd1-d284-42e3-be2c-6a6f83d78a8f","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"140","x-ms-request-id":"0e63d80c-be87-42a0-81d9-ae9433609b38","Body":"{\r\n \"operationId\": \"686904d6-fd15-425c-9f8b-626009d40c13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-25T23:18:35.731957+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/686904d6-fd15-425c-9f8b-626009d40c13?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14895","StatusCode":"200","x-ms-correlation-request-id":"36f616cf-1207-40ae-9a8f-81cf5309fa0d","Date":"Tue, 25 Aug 2015 23:22:01 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T232202Z:36f616cf-1207-40ae-9a8f-81cf5309fa0d","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"140","x-ms-request-id":"6d34d81d-b051-491e-827e-937fed8c762d","Body":"{\r\n \"operationId\": \"686904d6-fd15-425c-9f8b-626009d40c13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-25T23:18:35.731957+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/686904d6-fd15-425c-9f8b-626009d40c13?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14892","StatusCode":"200","x-ms-correlation-request-id":"153eff0f-3b57-46a5-bb7f-43251d0b7543","Date":"Tue, 25 Aug 2015 23:22:13 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T232213Z:153eff0f-3b57-46a5-bb7f-43251d0b7543","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"140","x-ms-request-id":"bb9f25e8-c051-42ba-86e7-67ba625479fc","Body":"{\r\n \"operationId\": \"686904d6-fd15-425c-9f8b-626009d40c13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-25T23:18:35.731957+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/686904d6-fd15-425c-9f8b-626009d40c13?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14891","StatusCode":"200","x-ms-correlation-request-id":"194ce46c-a931-4fa4-883c-2f638a66608d","Date":"Tue, 25 Aug 2015 23:22:23 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T232224Z:194ce46c-a931-4fa4-883c-2f638a66608d","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"140","x-ms-request-id":"21071561-6b06-4bac-873d-aa29554d2b0f","Body":"{\r\n \"operationId\": \"686904d6-fd15-425c-9f8b-626009d40c13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-25T23:18:35.731957+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/686904d6-fd15-425c-9f8b-626009d40c13?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14890","StatusCode":"200","x-ms-correlation-request-id":"739cd136-07d0-4567-92a6-5882ba47cbde","Date":"Tue, 25 Aug 2015 23:22:34 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T232234Z:739cd136-07d0-4567-92a6-5882ba47cbde","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"140","x-ms-request-id":"ab3fe752-7384-46db-be81-2cdd0c83d596","Body":"{\r\n \"operationId\": \"686904d6-fd15-425c-9f8b-626009d40c13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-25T23:18:35.731957+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/686904d6-fd15-425c-9f8b-626009d40c13?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14889","StatusCode":"200","x-ms-correlation-request-id":"772f342a-783b-44f2-be03-d2d34db1b57a","Date":"Tue, 25 Aug 2015 23:22:45 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T232245Z:772f342a-783b-44f2-be03-d2d34db1b57a","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"140","x-ms-request-id":"b3e2e8ef-e62f-4088-8da0-da06420607fc","Body":"{\r\n \"operationId\": \"686904d6-fd15-425c-9f8b-626009d40c13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-25T23:18:35.731957+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/686904d6-fd15-425c-9f8b-626009d40c13?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14888","StatusCode":"200","x-ms-correlation-request-id":"8d20f5d2-6a87-43e5-8ea1-39bcd44b9ac1","Date":"Tue, 25 Aug 2015 23:22:55 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T232256Z:8d20f5d2-6a87-43e5-8ea1-39bcd44b9ac1","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"140","x-ms-request-id":"d2aa7816-78aa-469b-b3e5-5bc2b67e020e","Body":"{\r\n \"operationId\": \"686904d6-fd15-425c-9f8b-626009d40c13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-25T23:18:35.731957+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/686904d6-fd15-425c-9f8b-626009d40c13?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14886","StatusCode":"200","x-ms-correlation-request-id":"0bc2e0e2-a906-48e2-82f5-f0257af212c0","Date":"Tue, 25 Aug 2015 23:23:07 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T232307Z:0bc2e0e2-a906-48e2-82f5-f0257af212c0","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"140","x-ms-request-id":"44210cf2-9fd2-4b5d-9128-131345013b42","Body":"{\r\n \"operationId\": \"686904d6-fd15-425c-9f8b-626009d40c13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-25T23:18:35.731957+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/686904d6-fd15-425c-9f8b-626009d40c13?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14884","StatusCode":"200","x-ms-correlation-request-id":"3b8aba3b-4544-4014-9f17-944ccf9308ef","Date":"Tue, 25 Aug 2015 23:23:18 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T232318Z:3b8aba3b-4544-4014-9f17-944ccf9308ef","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"140","x-ms-request-id":"cc2ad3d1-d72e-4c79-b720-76d6837c0906","Body":"{\r\n \"operationId\": \"686904d6-fd15-425c-9f8b-626009d40c13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-25T23:18:35.731957+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/686904d6-fd15-425c-9f8b-626009d40c13?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14883","StatusCode":"200","x-ms-correlation-request-id":"ba0a5e71-bea2-4a93-936c-583069c1dae3","Date":"Tue, 25 Aug 2015 23:23:28 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T232329Z:ba0a5e71-bea2-4a93-936c-583069c1dae3","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"140","x-ms-request-id":"90cb4307-559e-4e9a-840d-c30a828f9c63","Body":"{\r\n \"operationId\": \"686904d6-fd15-425c-9f8b-626009d40c13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-25T23:18:35.731957+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/686904d6-fd15-425c-9f8b-626009d40c13?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14882","StatusCode":"200","x-ms-correlation-request-id":"351033a0-9ebf-4fdb-9e6a-41e59e38fb62","Date":"Tue, 25 Aug 2015 23:23:39 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T232340Z:351033a0-9ebf-4fdb-9e6a-41e59e38fb62","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"140","x-ms-request-id":"bf61d877-f363-4e2d-aab3-e9d7ebf33582","Body":"{\r\n \"operationId\": \"686904d6-fd15-425c-9f8b-626009d40c13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-25T23:18:35.731957+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/686904d6-fd15-425c-9f8b-626009d40c13?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14881","StatusCode":"200","x-ms-correlation-request-id":"c6b4e39e-f8db-4f05-92b7-de1e58ae833d","Date":"Tue, 25 Aug 2015 23:23:50 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T232350Z:c6b4e39e-f8db-4f05-92b7-de1e58ae833d","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"140","x-ms-request-id":"0163e572-2b50-4f71-9b97-838fb313a3e1","Body":"{\r\n \"operationId\": \"686904d6-fd15-425c-9f8b-626009d40c13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-25T23:18:35.731957+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/686904d6-fd15-425c-9f8b-626009d40c13?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14880","StatusCode":"200","x-ms-correlation-request-id":"a707bdec-d564-49a3-97fc-ecdfa0ed5a3f","Date":"Tue, 25 Aug 2015 23:24:01 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T232401Z:a707bdec-d564-49a3-97fc-ecdfa0ed5a3f","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"140","x-ms-request-id":"c447c487-9fc1-41be-8b33-d196d5d9356f","Body":"{\r\n \"operationId\": \"686904d6-fd15-425c-9f8b-626009d40c13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-25T23:18:35.731957+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/686904d6-fd15-425c-9f8b-626009d40c13?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14877","StatusCode":"200","x-ms-correlation-request-id":"b1e49e99-1777-4604-83f1-f31ea075edcc","Date":"Tue, 25 Aug 2015 23:24:12 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T232412Z:b1e49e99-1777-4604-83f1-f31ea075edcc","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"140","x-ms-request-id":"a0e639bb-1502-4071-9832-fbc0474614dd","Body":"{\r\n \"operationId\": \"686904d6-fd15-425c-9f8b-626009d40c13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-25T23:18:35.731957+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/686904d6-fd15-425c-9f8b-626009d40c13?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14876","StatusCode":"200","x-ms-correlation-request-id":"0c0f8762-f276-4a80-b501-34bf36333f16","Date":"Tue, 25 Aug 2015 23:24:22 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T232423Z:0c0f8762-f276-4a80-b501-34bf36333f16","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"140","x-ms-request-id":"28db61ca-dc4f-4f8e-80a3-578685130817","Body":"{\r\n \"operationId\": \"686904d6-fd15-425c-9f8b-626009d40c13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-25T23:18:35.731957+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/686904d6-fd15-425c-9f8b-626009d40c13?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14875","StatusCode":"200","x-ms-correlation-request-id":"acbf5090-9255-47c3-906a-30af83b1f83b","Date":"Tue, 25 Aug 2015 23:24:33 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T232434Z:acbf5090-9255-47c3-906a-30af83b1f83b","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"140","x-ms-request-id":"200d6259-b390-4b2f-b2db-5991087f30d9","Body":"{\r\n \"operationId\": \"686904d6-fd15-425c-9f8b-626009d40c13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-25T23:18:35.731957+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/686904d6-fd15-425c-9f8b-626009d40c13?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14874","StatusCode":"200","x-ms-correlation-request-id":"e3afccad-0669-42ae-8443-cc6c4f31e77f","Date":"Tue, 25 Aug 2015 23:24:44 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T232445Z:e3afccad-0669-42ae-8443-cc6c4f31e77f","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"140","x-ms-request-id":"507b5962-ff7e-4fba-b16f-9315376b3dc9","Body":"{\r\n \"operationId\": \"686904d6-fd15-425c-9f8b-626009d40c13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-25T23:18:35.731957+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/686904d6-fd15-425c-9f8b-626009d40c13?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14873","StatusCode":"200","x-ms-correlation-request-id":"d536cecc-838d-4d5e-a27e-467407de7527","Date":"Tue, 25 Aug 2015 23:24:55 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T232456Z:d536cecc-838d-4d5e-a27e-467407de7527","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"140","x-ms-request-id":"2a913a59-8e00-4c2d-a402-7a9a1312b5a9","Body":"{\r\n \"operationId\": \"686904d6-fd15-425c-9f8b-626009d40c13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-25T23:18:35.731957+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/686904d6-fd15-425c-9f8b-626009d40c13?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14878","StatusCode":"200","x-ms-correlation-request-id":"1f189fa7-f209-4973-9778-8f34e96b7226","Date":"Tue, 25 Aug 2015 23:25:06 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T232506Z:1f189fa7-f209-4973-9778-8f34e96b7226","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"140","x-ms-request-id":"94c77541-e032-4a40-b8f9-795b741776cf","Body":"{\r\n \"operationId\": \"686904d6-fd15-425c-9f8b-626009d40c13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-25T23:18:35.731957+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/686904d6-fd15-425c-9f8b-626009d40c13?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14877","StatusCode":"200","x-ms-correlation-request-id":"39f5e515-6710-4086-98d6-72b194ffb4df","Date":"Tue, 25 Aug 2015 23:25:17 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T232517Z:39f5e515-6710-4086-98d6-72b194ffb4df","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"140","x-ms-request-id":"3f2603a6-96cb-40e0-b6e4-944b01176082","Body":"{\r\n \"operationId\": \"686904d6-fd15-425c-9f8b-626009d40c13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-25T23:18:35.731957+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/686904d6-fd15-425c-9f8b-626009d40c13?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14876","StatusCode":"200","x-ms-correlation-request-id":"318f064c-1677-4041-827c-55168f80b24d","Date":"Tue, 25 Aug 2015 23:25:28 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T232528Z:318f064c-1677-4041-827c-55168f80b24d","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"140","x-ms-request-id":"5d46a99b-892a-45b8-b995-3948364af647","Body":"{\r\n \"operationId\": \"686904d6-fd15-425c-9f8b-626009d40c13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-25T23:18:35.731957+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/686904d6-fd15-425c-9f8b-626009d40c13?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14875","StatusCode":"200","x-ms-correlation-request-id":"ffda6d62-d0e8-4315-a2d8-cc5ff13fb6e0","Date":"Tue, 25 Aug 2015 23:25:38 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T232539Z:ffda6d62-d0e8-4315-a2d8-cc5ff13fb6e0","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"140","x-ms-request-id":"c617bf0a-f1b5-4209-a442-d1946c473096","Body":"{\r\n \"operationId\": \"686904d6-fd15-425c-9f8b-626009d40c13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-25T23:18:35.731957+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/686904d6-fd15-425c-9f8b-626009d40c13?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14874","StatusCode":"200","x-ms-correlation-request-id":"1d6e94b6-17e9-4718-8599-4c0b9bb7d6f3","Date":"Tue, 25 Aug 2015 23:25:49 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T232550Z:1d6e94b6-17e9-4718-8599-4c0b9bb7d6f3","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"140","x-ms-request-id":"615d8eca-7d6c-447a-bb34-f5c4731b8664","Body":"{\r\n \"operationId\": \"686904d6-fd15-425c-9f8b-626009d40c13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-25T23:18:35.731957+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/686904d6-fd15-425c-9f8b-626009d40c13?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14873","StatusCode":"200","x-ms-correlation-request-id":"ce908cde-b2e8-4c95-8cca-cc99165439ca","Date":"Tue, 25 Aug 2015 23:26:00 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T232600Z:ce908cde-b2e8-4c95-8cca-cc99165439ca","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"140","x-ms-request-id":"82c9febd-ce5e-459e-b5af-dec4b7ea050a","Body":"{\r\n \"operationId\": \"686904d6-fd15-425c-9f8b-626009d40c13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-25T23:18:35.731957+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/686904d6-fd15-425c-9f8b-626009d40c13?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14871","StatusCode":"200","x-ms-correlation-request-id":"c81c2d6b-3efb-4a94-b4a7-45d9de371b5b","Date":"Tue, 25 Aug 2015 23:26:11 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T232611Z:c81c2d6b-3efb-4a94-b4a7-45d9de371b5b","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"140","x-ms-request-id":"3fce2bc1-0de7-4e13-9dfe-dcd8a27953e5","Body":"{\r\n \"operationId\": \"686904d6-fd15-425c-9f8b-626009d40c13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-25T23:18:35.731957+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/686904d6-fd15-425c-9f8b-626009d40c13?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14870","StatusCode":"200","x-ms-correlation-request-id":"1bf5134e-1f79-49cd-9f4c-181cf0816c27","Date":"Tue, 25 Aug 2015 23:26:22 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T232622Z:1bf5134e-1f79-49cd-9f4c-181cf0816c27","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"140","x-ms-request-id":"17423d8f-270a-4526-9fcb-ab03372bc4b2","Body":"{\r\n \"operationId\": \"686904d6-fd15-425c-9f8b-626009d40c13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-25T23:18:35.731957+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/686904d6-fd15-425c-9f8b-626009d40c13?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14869","StatusCode":"200","x-ms-correlation-request-id":"8d0adc4b-13b0-4396-945f-395936b52123","Date":"Tue, 25 Aug 2015 23:26:32 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T232633Z:8d0adc4b-13b0-4396-945f-395936b52123","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"140","x-ms-request-id":"e4e85ff1-22f2-4a4d-bf67-05237c0d6480","Body":"{\r\n \"operationId\": \"686904d6-fd15-425c-9f8b-626009d40c13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-25T23:18:35.731957+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/686904d6-fd15-425c-9f8b-626009d40c13?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14868","StatusCode":"200","x-ms-correlation-request-id":"442e467a-086a-43e1-b5bd-4ae071a8d991","Date":"Tue, 25 Aug 2015 23:26:43 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T232644Z:442e467a-086a-43e1-b5bd-4ae071a8d991","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"140","x-ms-request-id":"269c1d67-0b30-4008-9953-88ae1a4205dd","Body":"{\r\n \"operationId\": \"686904d6-fd15-425c-9f8b-626009d40c13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-25T23:18:35.731957+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/686904d6-fd15-425c-9f8b-626009d40c13?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14867","StatusCode":"200","x-ms-correlation-request-id":"0ec187a5-76f8-43b2-9712-26fdb713caa9","Date":"Tue, 25 Aug 2015 23:26:55 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T232655Z:0ec187a5-76f8-43b2-9712-26fdb713caa9","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"140","x-ms-request-id":"a2692f94-1f73-4ae0-885b-2757f2e6aa6c","Body":"{\r\n \"operationId\": \"686904d6-fd15-425c-9f8b-626009d40c13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-25T23:18:35.731957+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/686904d6-fd15-425c-9f8b-626009d40c13?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14866","StatusCode":"200","x-ms-correlation-request-id":"72f49153-bca6-4cb2-b372-39b1875d1f5b","Date":"Tue, 25 Aug 2015 23:27:05 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T232706Z:72f49153-bca6-4cb2-b372-39b1875d1f5b","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"140","x-ms-request-id":"3059dc59-c4b7-4177-a461-a3d332ff10f2","Body":"{\r\n \"operationId\": \"686904d6-fd15-425c-9f8b-626009d40c13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-25T23:18:35.731957+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/686904d6-fd15-425c-9f8b-626009d40c13?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14864","StatusCode":"200","x-ms-correlation-request-id":"d2db5408-b4e4-4e82-a132-73dadc13af8a","Date":"Tue, 25 Aug 2015 23:27:16 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T232717Z:d2db5408-b4e4-4e82-a132-73dadc13af8a","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"140","x-ms-request-id":"ec878f2d-13a2-4163-b4e6-dc50b1a6cad4","Body":"{\r\n \"operationId\": \"686904d6-fd15-425c-9f8b-626009d40c13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-25T23:18:35.731957+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/686904d6-fd15-425c-9f8b-626009d40c13?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14863","StatusCode":"200","x-ms-correlation-request-id":"dccfd999-04a7-427b-a17b-fc3386407c25","Date":"Tue, 25 Aug 2015 23:27:27 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T232727Z:dccfd999-04a7-427b-a17b-fc3386407c25","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"140","x-ms-request-id":"5d11218f-8c55-4b04-8f27-d5daf26459fc","Body":"{\r\n \"operationId\": \"686904d6-fd15-425c-9f8b-626009d40c13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-25T23:18:35.731957+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/686904d6-fd15-425c-9f8b-626009d40c13?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14862","StatusCode":"200","x-ms-correlation-request-id":"3bc57455-cbec-409a-bdf4-1649189e18b6","Date":"Tue, 25 Aug 2015 23:27:37 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T232738Z:3bc57455-cbec-409a-bdf4-1649189e18b6","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"140","x-ms-request-id":"2e91aa43-7662-4b21-b35a-85884cbc8a73","Body":"{\r\n \"operationId\": \"686904d6-fd15-425c-9f8b-626009d40c13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-25T23:18:35.731957+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/686904d6-fd15-425c-9f8b-626009d40c13?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14861","StatusCode":"200","x-ms-correlation-request-id":"e6ece918-c683-438e-92b6-d4f951c01f40","Date":"Tue, 25 Aug 2015 23:27:49 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T232749Z:e6ece918-c683-438e-92b6-d4f951c01f40","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"140","x-ms-request-id":"81da2379-9463-40fd-b744-2b8b2b17f4fe","Body":"{\r\n \"operationId\": \"686904d6-fd15-425c-9f8b-626009d40c13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-25T23:18:35.731957+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/686904d6-fd15-425c-9f8b-626009d40c13?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14860","StatusCode":"200","x-ms-correlation-request-id":"934665af-4ca7-43c4-a40a-38dd88d288f6","Date":"Tue, 25 Aug 2015 23:27:59 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T232800Z:934665af-4ca7-43c4-a40a-38dd88d288f6","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"140","x-ms-request-id":"fcce46c5-3309-4b4a-9bf4-52c076b37d5c","Body":"{\r\n \"operationId\": \"686904d6-fd15-425c-9f8b-626009d40c13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-25T23:18:35.731957+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/686904d6-fd15-425c-9f8b-626009d40c13?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14858","StatusCode":"200","x-ms-correlation-request-id":"e4c197bf-7a40-4636-854e-561916f6ea53","Date":"Tue, 25 Aug 2015 23:28:10 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T232811Z:e4c197bf-7a40-4636-854e-561916f6ea53","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"140","x-ms-request-id":"b0b1cea5-9f40-48ae-b7a0-373580072ca9","Body":"{\r\n \"operationId\": \"686904d6-fd15-425c-9f8b-626009d40c13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-25T23:18:35.731957+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/686904d6-fd15-425c-9f8b-626009d40c13?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14857","StatusCode":"200","x-ms-correlation-request-id":"5749115f-016d-42f4-b2d4-e800b25ae784","Date":"Tue, 25 Aug 2015 23:28:21 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T232822Z:5749115f-016d-42f4-b2d4-e800b25ae784","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"140","x-ms-request-id":"87f936af-6f43-4072-bd08-b5cfcec8c8f2","Body":"{\r\n \"operationId\": \"686904d6-fd15-425c-9f8b-626009d40c13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-25T23:18:35.731957+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/686904d6-fd15-425c-9f8b-626009d40c13?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14856","StatusCode":"200","x-ms-correlation-request-id":"fdba751f-ecb7-4fd7-9b33-cee1c1800f72","Date":"Tue, 25 Aug 2015 23:28:32 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T232832Z:fdba751f-ecb7-4fd7-9b33-cee1c1800f72","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"140","x-ms-request-id":"7365a2bf-9340-4a33-9a45-c30be6ce5ea7","Body":"{\r\n \"operationId\": \"686904d6-fd15-425c-9f8b-626009d40c13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-25T23:18:35.731957+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/686904d6-fd15-425c-9f8b-626009d40c13?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14855","StatusCode":"200","x-ms-correlation-request-id":"2cc5e509-4a71-4b30-91f3-12752e329af6","Date":"Tue, 25 Aug 2015 23:28:43 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T232843Z:2cc5e509-4a71-4b30-91f3-12752e329af6","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"140","x-ms-request-id":"0139bdab-a79e-4d09-879f-391e77c01e5d","Body":"{\r\n \"operationId\": \"686904d6-fd15-425c-9f8b-626009d40c13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-25T23:18:35.731957+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/686904d6-fd15-425c-9f8b-626009d40c13?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14854","StatusCode":"200","x-ms-correlation-request-id":"5ee83cdd-8ea9-470e-840f-8c23fcc4d41d","Date":"Tue, 25 Aug 2015 23:28:54 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T232854Z:5ee83cdd-8ea9-470e-840f-8c23fcc4d41d","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"140","x-ms-request-id":"29d6fcbf-e43e-4dd3-bd05-36690cdeccbf","Body":"{\r\n \"operationId\": \"686904d6-fd15-425c-9f8b-626009d40c13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-25T23:18:35.731957+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/686904d6-fd15-425c-9f8b-626009d40c13?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14853","StatusCode":"200","x-ms-correlation-request-id":"36de2be3-350d-41b4-8fd0-04a05290bbc3","Date":"Tue, 25 Aug 2015 23:29:05 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T232905Z:36de2be3-350d-41b4-8fd0-04a05290bbc3","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"140","x-ms-request-id":"a3add8c7-bd1c-4b49-a20f-fc09e416ccd7","Body":"{\r\n \"operationId\": \"686904d6-fd15-425c-9f8b-626009d40c13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-25T23:18:35.731957+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/686904d6-fd15-425c-9f8b-626009d40c13?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14850","StatusCode":"200","x-ms-correlation-request-id":"98c86058-9528-4228-8285-3f2aa7ce7880","Date":"Tue, 25 Aug 2015 23:29:15 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T232916Z:98c86058-9528-4228-8285-3f2aa7ce7880","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"140","x-ms-request-id":"1829ed82-4a26-4421-bcb9-8bd091a202f0","Body":"{\r\n \"operationId\": \"686904d6-fd15-425c-9f8b-626009d40c13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-25T23:18:35.731957+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/686904d6-fd15-425c-9f8b-626009d40c13?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14849","StatusCode":"200","x-ms-correlation-request-id":"a7a1ff30-f4b4-4650-9e4f-9c7b0160ac81","Date":"Tue, 25 Aug 2015 23:29:26 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T232927Z:a7a1ff30-f4b4-4650-9e4f-9c7b0160ac81","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"140","x-ms-request-id":"e4bdde9b-4783-46f4-b285-c1738b68bbaa","Body":"{\r\n \"operationId\": \"686904d6-fd15-425c-9f8b-626009d40c13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-25T23:18:35.731957+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/686904d6-fd15-425c-9f8b-626009d40c13?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14848","StatusCode":"200","x-ms-correlation-request-id":"0c4e9cd9-ccb8-4ad1-a93c-14afcad80fc0","Date":"Tue, 25 Aug 2015 23:29:38 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T232938Z:0c4e9cd9-ccb8-4ad1-a93c-14afcad80fc0","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"140","x-ms-request-id":"3963bc93-e043-4fca-886a-8da0086df867","Body":"{\r\n \"operationId\": \"686904d6-fd15-425c-9f8b-626009d40c13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-25T23:18:35.731957+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/686904d6-fd15-425c-9f8b-626009d40c13?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14847","StatusCode":"200","x-ms-correlation-request-id":"8b297762-7565-4043-ba59-f9881226acc0","Date":"Tue, 25 Aug 2015 23:29:48 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T232949Z:8b297762-7565-4043-ba59-f9881226acc0","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"140","x-ms-request-id":"54c725de-0c3f-4bc3-8030-536f3a6fb113","Body":"{\r\n \"operationId\": \"686904d6-fd15-425c-9f8b-626009d40c13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-25T23:18:35.731957+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/686904d6-fd15-425c-9f8b-626009d40c13?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14846","StatusCode":"200","x-ms-correlation-request-id":"efe43e92-fc66-418b-8ca9-9dc1a8406028","Date":"Tue, 25 Aug 2015 23:29:59 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T232959Z:efe43e92-fc66-418b-8ca9-9dc1a8406028","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"140","x-ms-request-id":"1139ae54-eec4-44cc-b4ce-c6801d568782","Body":"{\r\n \"operationId\": \"686904d6-fd15-425c-9f8b-626009d40c13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-25T23:18:35.731957+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/686904d6-fd15-425c-9f8b-626009d40c13?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14851","StatusCode":"200","x-ms-correlation-request-id":"4169c56e-e796-41b4-87a3-e317d6c601b2","Date":"Tue, 25 Aug 2015 23:30:10 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T233010Z:4169c56e-e796-41b4-87a3-e317d6c601b2","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"140","x-ms-request-id":"2a6ff96d-00aa-4066-b09b-06a2ebfc55c0","Body":"{\r\n \"operationId\": \"686904d6-fd15-425c-9f8b-626009d40c13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-25T23:18:35.731957+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/686904d6-fd15-425c-9f8b-626009d40c13?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14849","StatusCode":"200","x-ms-correlation-request-id":"4b117c25-ab48-411b-a506-051bb03e14d7","Date":"Tue, 25 Aug 2015 23:30:20 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T233021Z:4b117c25-ab48-411b-a506-051bb03e14d7","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"140","x-ms-request-id":"21e75571-26dd-4ec1-9500-4bcf4b1ec178","Body":"{\r\n \"operationId\": \"686904d6-fd15-425c-9f8b-626009d40c13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-25T23:18:35.731957+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/686904d6-fd15-425c-9f8b-626009d40c13?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14848","StatusCode":"200","x-ms-correlation-request-id":"04fbe6ad-b717-4fee-9be8-b48422f3f83a","Date":"Tue, 25 Aug 2015 23:30:31 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T233032Z:04fbe6ad-b717-4fee-9be8-b48422f3f83a","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"140","x-ms-request-id":"ac1be0f6-4a8f-40f4-931c-294f3d680b3e","Body":"{\r\n \"operationId\": \"686904d6-fd15-425c-9f8b-626009d40c13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-25T23:18:35.731957+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/686904d6-fd15-425c-9f8b-626009d40c13?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14847","StatusCode":"200","x-ms-correlation-request-id":"e523ae81-3a94-4b1b-9be7-a1e73a85abe9","Date":"Tue, 25 Aug 2015 23:30:43 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T233043Z:e523ae81-3a94-4b1b-9be7-a1e73a85abe9","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"140","x-ms-request-id":"ddb71f51-4a49-4270-a8eb-ced4fd5f0a3f","Body":"{\r\n \"operationId\": \"686904d6-fd15-425c-9f8b-626009d40c13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-25T23:18:35.731957+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/686904d6-fd15-425c-9f8b-626009d40c13?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14846","StatusCode":"200","x-ms-correlation-request-id":"5e79283d-2892-4ec1-ae68-96c69d700d6f","Date":"Tue, 25 Aug 2015 23:30:53 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T233054Z:5e79283d-2892-4ec1-ae68-96c69d700d6f","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"140","x-ms-request-id":"ba74327f-7784-4a25-8a8e-647db96cc179","Body":"{\r\n \"operationId\": \"686904d6-fd15-425c-9f8b-626009d40c13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-25T23:18:35.731957+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/686904d6-fd15-425c-9f8b-626009d40c13?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14845","StatusCode":"200","x-ms-correlation-request-id":"fbef097f-a280-4625-be03-5a6fb497b005","Date":"Tue, 25 Aug 2015 23:31:04 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T233105Z:fbef097f-a280-4625-be03-5a6fb497b005","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"140","x-ms-request-id":"5bf8d2a5-300f-4f7c-9980-75e133bac7b5","Body":"{\r\n \"operationId\": \"686904d6-fd15-425c-9f8b-626009d40c13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-25T23:18:35.731957+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/686904d6-fd15-425c-9f8b-626009d40c13?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14842","StatusCode":"200","x-ms-correlation-request-id":"9eb9c453-f2f8-48b8-81e3-9e8a525ff194","Date":"Tue, 25 Aug 2015 23:31:15 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T233116Z:9eb9c453-f2f8-48b8-81e3-9e8a525ff194","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"140","x-ms-request-id":"5701c388-3042-44c1-ba62-0e9a5ec475e2","Body":"{\r\n \"operationId\": \"686904d6-fd15-425c-9f8b-626009d40c13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-25T23:18:35.731957+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/686904d6-fd15-425c-9f8b-626009d40c13?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14841","StatusCode":"200","x-ms-correlation-request-id":"129036e7-23d8-41c0-8bee-6253447ff8cb","Date":"Tue, 25 Aug 2015 23:31:26 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T233126Z:129036e7-23d8-41c0-8bee-6253447ff8cb","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"140","x-ms-request-id":"33629f01-d7e0-4486-9a4b-27451ad325c3","Body":"{\r\n \"operationId\": \"686904d6-fd15-425c-9f8b-626009d40c13\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-25T23:18:35.731957+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/686904d6-fd15-425c-9f8b-626009d40c13?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130832035694092238","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14840","StatusCode":"200","x-ms-correlation-request-id":"3bb2db02-1c98-41d4-90cf-2e902172ac03","Date":"Tue, 25 Aug 2015 23:31:37 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150825T233137Z:3bb2db02-1c98-41d4-90cf-2e902172ac03","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"190","x-ms-request-id":"9b979c00-0d53-48c0-b0db-61e933a70574","Body":"{\r\n \"operationId\": \"686904d6-fd15-425c-9f8b-626009d40c13\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-08-25T23:18:35.731957+00:00\",\r\n \"endTime\": \"2015-08-25T23:31:30.7953669+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnkekow/providers/Microsoft.Network/networkInterfaces/javatest1nicnrbsmf?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14839","StatusCode":"200","x-ms-correlation-request-id":"564e5206-b352-478b-ae92-686718d01261","Date":"Tue, 25 Aug 2015 23:31:38 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","ETag":"W/\"272d2029-6a9d-452a-8b32-ed6a2a7ba407\"","x-ms-routing-request-id":"WESTUS:20150825T233138Z:564e5206-b352-478b-ae92-686718d01261","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1566","x-ms-request-id":"36e464da-6edf-43ca-bdd7-39d65d9e7294","Body":"{\r\n \"name\": \"javatest1nicnrbsmf\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnkekow/providers/Microsoft.Network/networkInterfaces/javatest1nicnrbsmf\",\r\n \"etag\": \"W/\\\"272d2029-6a9d-452a-8b32-ed6a2a7ba407\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e90073c1-7223-49c9-b2ec-f1669a0acdbc\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"javatest1ipcnxhdsf\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnkekow/providers/Microsoft.Network/networkInterfaces/javatest1nicnrbsmf/ipConfigurations/javatest1ipcnxhdsf\",\r\n \"etag\": \"W/\\\"272d2029-6a9d-452a-8b32-ed6a2a7ba407\\\"\",\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnkekow/providers/Microsoft.Network/virtualNetworks/javatest1vnetnghcbr/subnets/javatest1subnnzrkzr\"\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-A0-70-F9\",\r\n \"enableIPForwarding\": false,\r\n \"primary\": false,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnkekow/providers/Microsoft.Compute/virtualMachines/javatestVMkrebr\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnkekow/providers/Microsoft.Network/networkInterfaces/javatest2nicncrnah?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14838","StatusCode":"200","x-ms-correlation-request-id":"d777b33b-ce30-4ab8-92e4-d2e402c8cb5e","Date":"Tue, 25 Aug 2015 23:31:38 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","ETag":"W/\"809c8b88-4504-40c3-9e60-f1abd522215d\"","x-ms-routing-request-id":"WESTUS:20150825T233139Z:d777b33b-ce30-4ab8-92e4-d2e402c8cb5e","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1565","x-ms-request-id":"0ef2b545-aa5c-4e17-bfeb-6877e77bcb8b","Body":"{\r\n \"name\": \"javatest2nicncrnah\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnkekow/providers/Microsoft.Network/networkInterfaces/javatest2nicncrnah\",\r\n \"etag\": \"W/\\\"809c8b88-4504-40c3-9e60-f1abd522215d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b075125d-fa10-4d8f-aff8-5875814d2267\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"javatest2ipcnauwef\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnkekow/providers/Microsoft.Network/networkInterfaces/javatest2nicncrnah/ipConfigurations/javatest2ipcnauwef\",\r\n \"etag\": \"W/\\\"809c8b88-4504-40c3-9e60-f1abd522215d\\\"\",\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnkekow/providers/Microsoft.Network/virtualNetworks/javatest1vnetnghcbr/subnets/javatest1subnnzrkzr\"\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-A0-70-00\",\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnkekow/providers/Microsoft.Compute/virtualMachines/javatestVMkrebr\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"}] \ No newline at end of file +[{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/javatestrgnuliwd?api-version=2014-04-01-preview","Content-Type":"application/json; charset=utf-8"},{"x-ms-ratelimit-remaining-subscription-writes":"1188","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"9485ced1-0c71-42dc-a608-c8fa47df8d52","Date":"Mon, 19 Oct 2015 20:03:26 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200327Z:9485ced1-0c71-42dc-a608-c8fa47df8d52","Expires":"-1","Content-Length":"192","x-ms-request-id":"9485ced1-0c71-42dc-a608-c8fa47df8d52","Body":"{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnuliwd\",\"name\":\"javatestrgnuliwd\",\"location\":\"southeastasia\",\"properties\":{\"provisioningState\":\"Succeeded\"}}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnuliwd/providers/Microsoft.Network/virtualnetworks/javatest1vnetnkamzz?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-ratelimit-remaining-subscription-writes":"1194","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"4305b490-8a86-476e-b4b6-81c836ca922f","Date":"Mon, 19 Oct 2015 20:03:30 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"10","x-ms-routing-request-id":"WESTUS:20151019T200330Z:4305b490-8a86-476e-b4b6-81c836ca922f","Expires":"-1","Content-Length":"1108","Azure-AsyncOperation":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/southeastasia/operations/a6d2869a-6765-4f7e-91e8-25c59c290697?api-version=2015-05-01-preview","x-ms-request-id":"a6d2869a-6765-4f7e-91e8-25c59c290697","Body":"{\r\n \"name\": \"javatest1vnetnkamzz\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnuliwd/providers/Microsoft.Network/virtualNetworks/javatest1vnetnkamzz\",\r\n \"etag\": \"W/\\\"9dc75a9d-993f-47db-8000-122c9c632fa9\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"53abee14-f796-414d-9de1-1d1aebde35d5\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"javatest1subnnickjs\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnuliwd/providers/Microsoft.Network/virtualNetworks/javatest1vnetnkamzz/subnets/javatest1subnnickjs\",\r\n \"etag\": \"W/\\\"9dc75a9d-993f-47db-8000-122c9c632fa9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"},{"x-ms-version":"2015-05-01-preview","User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/southeastasia/operations/a6d2869a-6765-4f7e-91e8-25c59c290697?api-version=2015-05-01-preview"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14989","StatusCode":"200","x-ms-correlation-request-id":"69c6049a-0059-4ec8-839a-0b1a82a4d4a0","Date":"Mon, 19 Oct 2015 20:03:30 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200331Z:69c6049a-0059-4ec8-839a-0b1a82a4d4a0","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"29","x-ms-request-id":"4a4b7a4b-627f-4b85-a1a9-76b939db3ef1","Body":"{\r\n \"status\": \"Succeeded\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnuliwd/providers/Microsoft.Network/virtualnetworks/javatest1vnetnkamzz?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14971","StatusCode":"200","x-ms-correlation-request-id":"42abc85e-b78a-4a66-a877-0f362f63bf42","Date":"Mon, 19 Oct 2015 20:03:30 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","ETag":"W/\"0b10bc1c-1df9-4605-a44d-58ff3af2e408\"","x-ms-routing-request-id":"WESTUS:20151019T200331Z:42abc85e-b78a-4a66-a877-0f362f63bf42","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1110","x-ms-request-id":"ff88cd3e-95d3-4124-ba99-666c8409d7f2","Body":"{\r\n \"name\": \"javatest1vnetnkamzz\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnuliwd/providers/Microsoft.Network/virtualNetworks/javatest1vnetnkamzz\",\r\n \"etag\": \"W/\\\"0b10bc1c-1df9-4605-a44d-58ff3af2e408\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"53abee14-f796-414d-9de1-1d1aebde35d5\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"javatest1subnnickjs\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnuliwd/providers/Microsoft.Network/virtualNetworks/javatest1vnetnkamzz/subnets/javatest1subnnickjs\",\r\n \"etag\": \"W/\\\"0b10bc1c-1df9-4605-a44d-58ff3af2e408\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnuliwd/providers/Microsoft.Network/networkInterfaces/javatest1nicnlzihi?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-ratelimit-remaining-subscription-writes":"1187","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"8c33ba9d-c354-4fbd-8a00-b53ec5ffd803","Date":"Mon, 19 Oct 2015 20:03:35 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200335Z:8c33ba9d-c354-4fbd-8a00-b53ec5ffd803","Expires":"-1","Content-Length":"1361","Azure-AsyncOperation":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/southeastasia/operations/ef53b4d3-3f91-430c-8769-e3bb100c9da6?api-version=2015-05-01-preview","x-ms-request-id":"ef53b4d3-3f91-430c-8769-e3bb100c9da6","Body":"{\r\n \"name\": \"javatest1nicnlzihi\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnuliwd/providers/Microsoft.Network/networkInterfaces/javatest1nicnlzihi\",\r\n \"etag\": \"W/\\\"92b35448-bdec-4252-ab35-bae7b8317195\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a480c0cb-02af-4e72-b907-7a11319dc12b\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"javatest1ipcnnyimz\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnuliwd/providers/Microsoft.Network/networkInterfaces/javatest1nicnlzihi/ipConfigurations/javatest1ipcnnyimz\",\r\n \"etag\": \"W/\\\"92b35448-bdec-4252-ab35-bae7b8317195\\\"\",\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/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnuliwd/providers/Microsoft.Network/virtualNetworks/javatest1vnetnkamzz/subnets/javatest1subnnickjs\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"},{"x-ms-version":"2015-05-01-preview","User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/southeastasia/operations/ef53b4d3-3f91-430c-8769-e3bb100c9da6?api-version=2015-05-01-preview"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14989","StatusCode":"200","x-ms-correlation-request-id":"b6fbc527-d7a9-4fbe-87ee-84439e83addc","Date":"Mon, 19 Oct 2015 20:03:35 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200336Z:b6fbc527-d7a9-4fbe-87ee-84439e83addc","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"29","x-ms-request-id":"2ce0f072-9744-48ce-b03a-70b5cb85326a","Body":"{\r\n \"status\": \"Succeeded\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnuliwd/providers/Microsoft.Network/networkInterfaces/javatest1nicnlzihi?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14970","StatusCode":"200","x-ms-correlation-request-id":"35ef377e-717a-4793-874b-c1706eb8c412","Date":"Mon, 19 Oct 2015 20:03:36 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","ETag":"W/\"92b35448-bdec-4252-ab35-bae7b8317195\"","x-ms-routing-request-id":"WESTUS:20151019T200337Z:35ef377e-717a-4793-874b-c1706eb8c412","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1361","x-ms-request-id":"d609d46a-843a-44b1-ab88-c3395c2b2602","Body":"{\r\n \"name\": \"javatest1nicnlzihi\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnuliwd/providers/Microsoft.Network/networkInterfaces/javatest1nicnlzihi\",\r\n \"etag\": \"W/\\\"92b35448-bdec-4252-ab35-bae7b8317195\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a480c0cb-02af-4e72-b907-7a11319dc12b\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"javatest1ipcnnyimz\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnuliwd/providers/Microsoft.Network/networkInterfaces/javatest1nicnlzihi/ipConfigurations/javatest1ipcnnyimz\",\r\n \"etag\": \"W/\\\"92b35448-bdec-4252-ab35-bae7b8317195\\\"\",\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/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnuliwd/providers/Microsoft.Network/virtualNetworks/javatest1vnetnkamzz/subnets/javatest1subnnickjs\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnuliwd/providers/Microsoft.Network/networkInterfaces/javatest2nicnuudqd?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-ratelimit-remaining-subscription-writes":"1186","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"caa61aab-9ce9-439a-b4ab-53e96189db62","Date":"Mon, 19 Oct 2015 20:03:39 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200339Z:caa61aab-9ce9-439a-b4ab-53e96189db62","Expires":"-1","Content-Length":"1361","Azure-AsyncOperation":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/southeastasia/operations/fac59428-6672-445b-8a3b-10420c23d29d?api-version=2015-05-01-preview","x-ms-request-id":"fac59428-6672-445b-8a3b-10420c23d29d","Body":"{\r\n \"name\": \"javatest2nicnuudqd\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnuliwd/providers/Microsoft.Network/networkInterfaces/javatest2nicnuudqd\",\r\n \"etag\": \"W/\\\"f8e6f648-18a4-4b32-b6c3-7d947fd51b5e\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8fcdc419-0586-4917-8990-74de464fd4c1\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"javatest2ipcnyyrwi\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnuliwd/providers/Microsoft.Network/networkInterfaces/javatest2nicnuudqd/ipConfigurations/javatest2ipcnyyrwi\",\r\n \"etag\": \"W/\\\"f8e6f648-18a4-4b32-b6c3-7d947fd51b5e\\\"\",\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/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnuliwd/providers/Microsoft.Network/virtualNetworks/javatest1vnetnkamzz/subnets/javatest1subnnickjs\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"},{"x-ms-version":"2015-05-01-preview","User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/southeastasia/operations/fac59428-6672-445b-8a3b-10420c23d29d?api-version=2015-05-01-preview"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14987","StatusCode":"200","x-ms-correlation-request-id":"b0fd5c85-51e7-41e5-ab2a-68260dc0c5fc","Date":"Mon, 19 Oct 2015 20:03:39 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200340Z:b0fd5c85-51e7-41e5-ab2a-68260dc0c5fc","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"29","x-ms-request-id":"4f7e18af-41b8-47fa-80ea-97a3a4c56363","Body":"{\r\n \"status\": \"Succeeded\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnuliwd/providers/Microsoft.Network/networkInterfaces/javatest2nicnuudqd?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14969","StatusCode":"200","x-ms-correlation-request-id":"99f63b2b-4cdc-4a69-82fc-2625c8c34c3f","Date":"Mon, 19 Oct 2015 20:03:40 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","ETag":"W/\"f8e6f648-18a4-4b32-b6c3-7d947fd51b5e\"","x-ms-routing-request-id":"WESTUS:20151019T200340Z:99f63b2b-4cdc-4a69-82fc-2625c8c34c3f","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1361","x-ms-request-id":"1a78c29e-5e0c-4fcc-9238-34362e4d1551","Body":"{\r\n \"name\": \"javatest2nicnuudqd\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnuliwd/providers/Microsoft.Network/networkInterfaces/javatest2nicnuudqd\",\r\n \"etag\": \"W/\\\"f8e6f648-18a4-4b32-b6c3-7d947fd51b5e\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8fcdc419-0586-4917-8990-74de464fd4c1\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"javatest2ipcnyyrwi\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnuliwd/providers/Microsoft.Network/networkInterfaces/javatest2nicnuudqd/ipConfigurations/javatest2ipcnyyrwi\",\r\n \"etag\": \"W/\\\"f8e6f648-18a4-4b32-b6c3-7d947fd51b5e\\\"\",\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/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnuliwd/providers/Microsoft.Network/virtualNetworks/javatest1vnetnkamzz/subnets/javatest1subnnickjs\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/javatestrgnuliwd?api-version=2014-04-01-preview","Content-Type":"application/json; charset=utf-8"},{"Transfer-Encoding":"chunked","x-ms-ratelimit-remaining-subscription-writes":"1187","Pragma":"no-cache","StatusCode":"200","x-ms-correlation-request-id":"cb1e17a1-77ad-429d-a642-555619f2407d","Date":"Mon, 19 Oct 2015 20:03:43 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200343Z:cb1e17a1-77ad-429d-a642-555619f2407d","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"192","x-ms-request-id":"cb1e17a1-77ad-429d-a642-555619f2407d","Body":"{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnuliwd\",\"name\":\"javatestrgnuliwd\",\"location\":\"southeastasia\",\"properties\":{\"provisioningState\":\"Succeeded\"}}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnuliwd/providers/Microsoft.Storage/storageAccounts/javatest1sancxbrt?api-version=2015-06-15","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-ratelimit-remaining-subscription-writes":"1186","Pragma":"no-cache","StatusCode":"202","x-ms-correlation-request-id":"8939d147-20fb-4f9c-846b-9411120c9a32","Date":"Mon, 19 Oct 2015 20:03:45 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"25","x-ms-routing-request-id":"WESTUS:20151019T200345Z:8939d147-20fb-4f9c-846b-9411120c9a32","Expires":"-1","Content-Length":"0","x-ms-request-id":"8939d147-20fb-4f9c-846b-9411120c9a32","Body":"","Location":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/operations/fc1668c4-115f-49e0-a47d-481e762a0515?monitor=true&api-version=2015-06-15"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/operations/fc1668c4-115f-49e0-a47d-481e762a0515?monitor=true&api-version=2015-06-15"},{"Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14985","StatusCode":"202","x-ms-correlation-request-id":"b9fd1074-8b88-491f-a46b-127b292a077a","Date":"Mon, 19 Oct 2015 20:03:45 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"25","x-ms-routing-request-id":"WESTUS:20151019T200346Z:b9fd1074-8b88-491f-a46b-127b292a077a","Expires":"-1","Content-Length":"0","x-ms-request-id":"b9fd1074-8b88-491f-a46b-127b292a077a","Body":"","Location":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/operations/fc1668c4-115f-49e0-a47d-481e762a0515?monitor=true&api-version=2015-06-15"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/operations/fc1668c4-115f-49e0-a47d-481e762a0515?monitor=true&api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14984","StatusCode":"200","x-ms-correlation-request-id":"4b8aa874-e078-4ff9-8501-0a4616cba22e","Date":"Mon, 19 Oct 2015 20:04:10 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200411Z:4b8aa874-e078-4ff9-8501-0a4616cba22e","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"72","x-ms-request-id":"4b8aa874-e078-4ff9-8501-0a4616cba22e","Body":"{\"location\":\"SouthEastAsia\",\"properties\":{\"accountType\":\"Standard_LRS\"}}","Content-Type":"application/json"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnuliwd/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14968","StatusCode":"200","x-ms-correlation-request-id":"d51fa338-1348-459e-aa86-9f48d8db5348","Date":"Mon, 19 Oct 2015 20:04:11 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200412Z:d51fa338-1348-459e-aa86-9f48d8db5348","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"717","x-ms-request-id":"d51fa338-1348-459e-aa86-9f48d8db5348","Body":"{\"value\":[{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnuliwd/providers/Microsoft.Storage/storageAccounts/javatest1sancxbrt\",\"location\":\"southeastasia\",\"name\":\"javatest1sancxbrt\",\"properties\":{\"accountType\":\"Standard_LRS\",\"creationTime\":\"2015-10-19T20:03:45.3446860Z\",\"primaryEndpoints\":{\"blob\":\"https://javatest1sancxbrt.blob.core.windows.net/\",\"file\":\"https://javatest1sancxbrt.file.core.windows.net/\",\"queue\":\"https://javatest1sancxbrt.queue.core.windows.net/\",\"table\":\"https://javatest1sancxbrt.table.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}]}\n","Content-Type":"application/json"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnuliwd/providers/Microsoft.Compute/availabilitySets/javatest1asnqgwyz?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","x-ms-ratelimit-remaining-subscription-writes":"1185","Pragma":"no-cache","StatusCode":"200","x-ms-correlation-request-id":"12b85cf8-7199-4fb1-b66b-71541faa5ecc","Date":"Mon, 19 Oct 2015 20:04:14 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200415Z:12b85cf8-7199-4fb1-b66b-71541faa5ecc","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"387","x-ms-request-id":"8dc08792-78ba-4087-8a81-2139f39155ba","Body":"{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnuliwd/providers/Microsoft.Compute/availabilitySets/javatest1asnqgwyz\",\r\n \"name\": \"javatest1asnqgwyz\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnuliwd/providers/Microsoft.Compute/virtualMachines/javatestVMcuyrn?api-version=2015-06-15","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","x-ms-ratelimit-remaining-subscription-writes":"1184","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"047cf701-fe96-4bb9-ab87-4faf4bb1e39c","Date":"Mon, 19 Oct 2015 20:04:18 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200418Z:047cf701-fe96-4bb9-ab87-4faf4bb1e39c","Expires":"-1","Content-Length":"1843","Azure-AsyncOperation":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/f8a8f84a-8e37-4af7-a92c-cac0d0b35d9c?api-version=2015-06-15","x-ms-request-id":"f8a8f84a-8e37-4af7-a92c-cac0d0b35d9c","Body":"{\r\n \"properties\": {\r\n \"vmId\": \"06c25470-dce4-4ca7-a189-b615c37b9a51\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnuliwd/providers/Microsoft.Compute/availabilitySets/JAVATEST1ASNQGWYZ\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1sancxbrt.blob.core.windows.net/javatest1connxmhis/ososvhd.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javatestVMcuyrn\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"properties\":{\"primary\":false},\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnuliwd/providers/Microsoft.Network/networkInterfaces/javatest1nicnlzihi\"},{\"properties\":{\"primary\":true},\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnuliwd/providers/Microsoft.Network/networkInterfaces/javatest2nicnuudqd\"}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnuliwd/providers/Microsoft.Compute/virtualMachines/javatestVMcuyrn\",\r\n \"name\": \"javatestVMcuyrn\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/f8a8f84a-8e37-4af7-a92c-cac0d0b35d9c?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14986","StatusCode":"200","x-ms-correlation-request-id":"45460e66-bac8-4c6e-bc69-939cadc42e84","Date":"Mon, 19 Oct 2015 20:04:19 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200419Z:45460e66-bac8-4c6e-bc69-939cadc42e84","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"c77fef41-aef8-4afc-a346-cf88eeb7e2fd","Body":"{\r\n \"operationId\": \"f8a8f84a-8e37-4af7-a92c-cac0d0b35d9c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:04:16.9135822+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnuliwd/providers/Microsoft.Compute/virtualMachines/javatestVMcuyrn?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14985","StatusCode":"200","x-ms-correlation-request-id":"d401f50b-7034-4271-8291-9154cf2d96e8","Date":"Mon, 19 Oct 2015 20:04:19 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200419Z:d401f50b-7034-4271-8291-9154cf2d96e8","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1843","x-ms-request-id":"930479b0-2fcb-4b55-af93-a388830357fd","Body":"{\r\n \"properties\": {\r\n \"vmId\": \"06c25470-dce4-4ca7-a189-b615c37b9a51\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnuliwd/providers/Microsoft.Compute/availabilitySets/JAVATEST1ASNQGWYZ\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1sancxbrt.blob.core.windows.net/javatest1connxmhis/ososvhd.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javatestVMcuyrn\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"properties\":{\"primary\":false},\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnuliwd/providers/Microsoft.Network/networkInterfaces/javatest1nicnlzihi\"},{\"properties\":{\"primary\":true},\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnuliwd/providers/Microsoft.Network/networkInterfaces/javatest2nicnuudqd\"}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnuliwd/providers/Microsoft.Compute/virtualMachines/javatestVMcuyrn\",\r\n \"name\": \"javatestVMcuyrn\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnuliwd/providers/Microsoft.Compute/virtualMachines/javatestVMcuyrn?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","x-ms-ratelimit-remaining-subscription-writes":"1186","Pragma":"no-cache","StatusCode":"200","x-ms-correlation-request-id":"240151b2-d724-4308-9ef4-f5ea75886d3d","Date":"Mon, 19 Oct 2015 20:04:20 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200421Z:240151b2-d724-4308-9ef4-f5ea75886d3d","Vary":"Accept-Encoding","Expires":"-1","Azure-AsyncOperation":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/4c1864d4-0773-407e-96c9-f8620e6317c4?api-version=2015-06-15","Content-Length":"1843","x-ms-request-id":"4c1864d4-0773-407e-96c9-f8620e6317c4","Body":"{\r\n \"properties\": {\r\n \"vmId\": \"06c25470-dce4-4ca7-a189-b615c37b9a51\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnuliwd/providers/Microsoft.Compute/availabilitySets/JAVATEST1ASNQGWYZ\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2008-R2-SP1\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1sancxbrt.blob.core.windows.net/javatest1connxmhis/ososvhd.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javatestVMcuyrn\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"properties\":{\"primary\":false},\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnuliwd/providers/Microsoft.Network/networkInterfaces/javatest1nicnlzihi\"},{\"properties\":{\"primary\":true},\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnuliwd/providers/Microsoft.Network/networkInterfaces/javatest2nicnuudqd\"}]},\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnuliwd/providers/Microsoft.Compute/virtualMachines/javatestVMcuyrn\",\r\n \"name\": \"javatestVMcuyrn\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/4c1864d4-0773-407e-96c9-f8620e6317c4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14988","StatusCode":"200","x-ms-correlation-request-id":"e186de36-870a-4bd6-a27c-87d9b59ad982","Date":"Mon, 19 Oct 2015 20:04:21 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200421Z:e186de36-870a-4bd6-a27c-87d9b59ad982","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"0a3c4dd3-1d01-4aef-9580-daf5b5143b4a","Body":"{\r\n \"operationId\": \"4c1864d4-0773-407e-96c9-f8620e6317c4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:04:20.3823222+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/4c1864d4-0773-407e-96c9-f8620e6317c4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14987","StatusCode":"200","x-ms-correlation-request-id":"b21d2bab-218c-42a9-92f7-e7d5685d2fef","Date":"Mon, 19 Oct 2015 20:04:51 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200452Z:b21d2bab-218c-42a9-92f7-e7d5685d2fef","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"fc7a9257-fae4-43bf-a723-eeb67505540d","Body":"{\r\n \"operationId\": \"4c1864d4-0773-407e-96c9-f8620e6317c4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:04:20.3823222+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/4c1864d4-0773-407e-96c9-f8620e6317c4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14986","StatusCode":"200","x-ms-correlation-request-id":"b2ab89dc-9c49-4433-b270-2667d346601b","Date":"Mon, 19 Oct 2015 20:05:02 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200502Z:b2ab89dc-9c49-4433-b270-2667d346601b","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"1c89d8a8-fc56-4a14-a5ab-1e690e54824d","Body":"{\r\n \"operationId\": \"4c1864d4-0773-407e-96c9-f8620e6317c4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:04:20.3823222+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/4c1864d4-0773-407e-96c9-f8620e6317c4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14985","StatusCode":"200","x-ms-correlation-request-id":"e0cbc6f1-969e-4912-b2f9-3d5af8a37e1f","Date":"Mon, 19 Oct 2015 20:05:12 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200512Z:e0cbc6f1-969e-4912-b2f9-3d5af8a37e1f","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"de60bb4e-ba77-4c7a-82c6-f7f02ea93a6b","Body":"{\r\n \"operationId\": \"4c1864d4-0773-407e-96c9-f8620e6317c4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:04:20.3823222+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/4c1864d4-0773-407e-96c9-f8620e6317c4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14984","StatusCode":"200","x-ms-correlation-request-id":"e35591b0-1c34-4338-aee6-e5b6d1e58a91","Date":"Mon, 19 Oct 2015 20:05:22 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200523Z:e35591b0-1c34-4338-aee6-e5b6d1e58a91","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"a4b66873-658d-4233-914f-50039a7f8b69","Body":"{\r\n \"operationId\": \"4c1864d4-0773-407e-96c9-f8620e6317c4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:04:20.3823222+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/4c1864d4-0773-407e-96c9-f8620e6317c4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14983","StatusCode":"200","x-ms-correlation-request-id":"3ed411c0-9ab3-4618-8c5d-9ae08ce688eb","Date":"Mon, 19 Oct 2015 20:05:33 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200533Z:3ed411c0-9ab3-4618-8c5d-9ae08ce688eb","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"b47ccf6e-8ba8-4e41-bd7d-8cf1a999d2a0","Body":"{\r\n \"operationId\": \"4c1864d4-0773-407e-96c9-f8620e6317c4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:04:20.3823222+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/4c1864d4-0773-407e-96c9-f8620e6317c4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14982","StatusCode":"200","x-ms-correlation-request-id":"8ff42d6f-736e-49dd-bbe5-e971f09905b2","Date":"Mon, 19 Oct 2015 20:05:43 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200543Z:8ff42d6f-736e-49dd-bbe5-e971f09905b2","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"b70b3a9e-d9b0-4ee0-9a48-5794a92750ad","Body":"{\r\n \"operationId\": \"4c1864d4-0773-407e-96c9-f8620e6317c4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:04:20.3823222+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/4c1864d4-0773-407e-96c9-f8620e6317c4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14981","StatusCode":"200","x-ms-correlation-request-id":"252507ff-118c-4b6c-bb22-75dd311efde5","Date":"Mon, 19 Oct 2015 20:05:53 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200553Z:252507ff-118c-4b6c-bb22-75dd311efde5","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"987f27b5-b61b-4390-b2ca-2a0199297e46","Body":"{\r\n \"operationId\": \"4c1864d4-0773-407e-96c9-f8620e6317c4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:04:20.3823222+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/4c1864d4-0773-407e-96c9-f8620e6317c4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14980","StatusCode":"200","x-ms-correlation-request-id":"52930707-0abc-4928-9066-444a30f61e86","Date":"Mon, 19 Oct 2015 20:06:03 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200604Z:52930707-0abc-4928-9066-444a30f61e86","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"89235372-0280-4fe7-b3b7-892fe6c718fc","Body":"{\r\n \"operationId\": \"4c1864d4-0773-407e-96c9-f8620e6317c4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:04:20.3823222+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/4c1864d4-0773-407e-96c9-f8620e6317c4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14979","StatusCode":"200","x-ms-correlation-request-id":"ad413325-bbf9-45bf-943e-bac8aeb05ce7","Date":"Mon, 19 Oct 2015 20:06:13 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200614Z:ad413325-bbf9-45bf-943e-bac8aeb05ce7","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"1d51112b-3741-447b-9a06-b79a39bc8057","Body":"{\r\n \"operationId\": \"4c1864d4-0773-407e-96c9-f8620e6317c4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:04:20.3823222+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/4c1864d4-0773-407e-96c9-f8620e6317c4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14978","StatusCode":"200","x-ms-correlation-request-id":"d60fcbc5-751b-400f-939d-a7bb5b2b292e","Date":"Mon, 19 Oct 2015 20:06:24 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200624Z:d60fcbc5-751b-400f-939d-a7bb5b2b292e","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"8e798fd9-a2f4-4956-850d-63bcdf522b99","Body":"{\r\n \"operationId\": \"4c1864d4-0773-407e-96c9-f8620e6317c4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:04:20.3823222+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/4c1864d4-0773-407e-96c9-f8620e6317c4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14977","StatusCode":"200","x-ms-correlation-request-id":"70648b3f-144f-46e6-b928-b9c17dc77d8d","Date":"Mon, 19 Oct 2015 20:06:34 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200634Z:70648b3f-144f-46e6-b928-b9c17dc77d8d","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"fdd95449-1397-4a28-963f-df1158442a27","Body":"{\r\n \"operationId\": \"4c1864d4-0773-407e-96c9-f8620e6317c4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:04:20.3823222+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/4c1864d4-0773-407e-96c9-f8620e6317c4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14976","StatusCode":"200","x-ms-correlation-request-id":"7a63f24b-031c-4d8e-9e4b-137f187944f2","Date":"Mon, 19 Oct 2015 20:06:44 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200645Z:7a63f24b-031c-4d8e-9e4b-137f187944f2","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"d15c24d3-5ddd-4fe7-aa61-d2b23c0d3b7d","Body":"{\r\n \"operationId\": \"4c1864d4-0773-407e-96c9-f8620e6317c4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:04:20.3823222+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/4c1864d4-0773-407e-96c9-f8620e6317c4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14975","StatusCode":"200","x-ms-correlation-request-id":"188f1a43-692c-4aab-9de1-95da985cd4b0","Date":"Mon, 19 Oct 2015 20:06:54 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200655Z:188f1a43-692c-4aab-9de1-95da985cd4b0","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"a3b44192-6970-4dc0-9ac0-c2a4a1ebad98","Body":"{\r\n \"operationId\": \"4c1864d4-0773-407e-96c9-f8620e6317c4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:04:20.3823222+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/4c1864d4-0773-407e-96c9-f8620e6317c4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14974","StatusCode":"200","x-ms-correlation-request-id":"23a75a51-b220-437c-8eb2-15c22f992484","Date":"Mon, 19 Oct 2015 20:07:05 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200705Z:23a75a51-b220-437c-8eb2-15c22f992484","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"9b52e9bc-40b4-4286-9f3f-9f6bfdac65d2","Body":"{\r\n \"operationId\": \"4c1864d4-0773-407e-96c9-f8620e6317c4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:04:20.3823222+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/4c1864d4-0773-407e-96c9-f8620e6317c4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14973","StatusCode":"200","x-ms-correlation-request-id":"25cfd07f-465d-4174-8c3e-b515fbb2e85d","Date":"Mon, 19 Oct 2015 20:07:15 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200715Z:25cfd07f-465d-4174-8c3e-b515fbb2e85d","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"e482b55e-6d20-48a5-bc7c-e1707860d047","Body":"{\r\n \"operationId\": \"4c1864d4-0773-407e-96c9-f8620e6317c4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:04:20.3823222+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/4c1864d4-0773-407e-96c9-f8620e6317c4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14972","StatusCode":"200","x-ms-correlation-request-id":"3a24162c-89ba-45a3-8eab-65229a16555d","Date":"Mon, 19 Oct 2015 20:07:25 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200726Z:3a24162c-89ba-45a3-8eab-65229a16555d","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"66fa3e9c-5d19-43fa-b044-7af00cf376f7","Body":"{\r\n \"operationId\": \"4c1864d4-0773-407e-96c9-f8620e6317c4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:04:20.3823222+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/4c1864d4-0773-407e-96c9-f8620e6317c4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14971","StatusCode":"200","x-ms-correlation-request-id":"f382311c-ec4d-43fd-989e-c12fdcbd47b7","Date":"Mon, 19 Oct 2015 20:07:35 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200736Z:f382311c-ec4d-43fd-989e-c12fdcbd47b7","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"07f9e9c4-0f41-482b-a361-22e2a22195f4","Body":"{\r\n \"operationId\": \"4c1864d4-0773-407e-96c9-f8620e6317c4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:04:20.3823222+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/4c1864d4-0773-407e-96c9-f8620e6317c4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14970","StatusCode":"200","x-ms-correlation-request-id":"3ef8651a-5f59-4c59-a18c-2d9737596f8b","Date":"Mon, 19 Oct 2015 20:07:46 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200746Z:3ef8651a-5f59-4c59-a18c-2d9737596f8b","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"27e75b2b-3af3-4cb8-a168-f6a99eb5cca2","Body":"{\r\n \"operationId\": \"4c1864d4-0773-407e-96c9-f8620e6317c4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:04:20.3823222+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/4c1864d4-0773-407e-96c9-f8620e6317c4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14969","StatusCode":"200","x-ms-correlation-request-id":"fff2a045-33b7-490e-ba2e-1e8024addead","Date":"Mon, 19 Oct 2015 20:07:56 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200756Z:fff2a045-33b7-490e-ba2e-1e8024addead","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"cd71da9e-f0bc-469f-8986-92687b03c846","Body":"{\r\n \"operationId\": \"4c1864d4-0773-407e-96c9-f8620e6317c4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:04:20.3823222+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/4c1864d4-0773-407e-96c9-f8620e6317c4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14968","StatusCode":"200","x-ms-correlation-request-id":"875d4a07-89db-47e7-ba95-f197dc961d5b","Date":"Mon, 19 Oct 2015 20:08:06 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200807Z:875d4a07-89db-47e7-ba95-f197dc961d5b","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"b36dc9d9-eaa5-4986-847f-4dc3a02799b7","Body":"{\r\n \"operationId\": \"4c1864d4-0773-407e-96c9-f8620e6317c4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:04:20.3823222+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/4c1864d4-0773-407e-96c9-f8620e6317c4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14967","StatusCode":"200","x-ms-correlation-request-id":"b86c19f9-9a92-43b9-a721-9525e3f51306","Date":"Mon, 19 Oct 2015 20:08:16 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200817Z:b86c19f9-9a92-43b9-a721-9525e3f51306","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"d4f570fe-e3a2-4910-b947-0a787f4977eb","Body":"{\r\n \"operationId\": \"4c1864d4-0773-407e-96c9-f8620e6317c4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:04:20.3823222+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/4c1864d4-0773-407e-96c9-f8620e6317c4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14966","StatusCode":"200","x-ms-correlation-request-id":"939b3101-4be5-43ea-8877-dadd9238f6d2","Date":"Mon, 19 Oct 2015 20:08:26 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200827Z:939b3101-4be5-43ea-8877-dadd9238f6d2","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"fd385ee9-52b2-4ce6-badb-0d0678f27637","Body":"{\r\n \"operationId\": \"4c1864d4-0773-407e-96c9-f8620e6317c4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:04:20.3823222+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/4c1864d4-0773-407e-96c9-f8620e6317c4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14965","StatusCode":"200","x-ms-correlation-request-id":"b9cab548-c33c-445e-aa35-f8cda02e0985","Date":"Mon, 19 Oct 2015 20:08:37 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200837Z:b9cab548-c33c-445e-aa35-f8cda02e0985","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"0c57d40c-f068-4707-84e5-70251a8c5e04","Body":"{\r\n \"operationId\": \"4c1864d4-0773-407e-96c9-f8620e6317c4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:04:20.3823222+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/4c1864d4-0773-407e-96c9-f8620e6317c4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14964","StatusCode":"200","x-ms-correlation-request-id":"312acd6e-0e90-4bbc-aef5-33317128987b","Date":"Mon, 19 Oct 2015 20:08:47 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200848Z:312acd6e-0e90-4bbc-aef5-33317128987b","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"9b662869-c90d-40ec-995c-a6a410ca5dcb","Body":"{\r\n \"operationId\": \"4c1864d4-0773-407e-96c9-f8620e6317c4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:04:20.3823222+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/4c1864d4-0773-407e-96c9-f8620e6317c4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14963","StatusCode":"200","x-ms-correlation-request-id":"331ac269-1757-403c-b105-87f0f242c6b8","Date":"Mon, 19 Oct 2015 20:08:57 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200858Z:331ac269-1757-403c-b105-87f0f242c6b8","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"4bb3ce48-3873-475a-be94-a83afd5b35ee","Body":"{\r\n \"operationId\": \"4c1864d4-0773-407e-96c9-f8620e6317c4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:04:20.3823222+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/4c1864d4-0773-407e-96c9-f8620e6317c4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14962","StatusCode":"200","x-ms-correlation-request-id":"3de56ac5-6d75-4d8e-8421-fdee3c38f4af","Date":"Mon, 19 Oct 2015 20:09:07 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200908Z:3de56ac5-6d75-4d8e-8421-fdee3c38f4af","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"4fbb316f-cca5-4833-9086-24ee67e750bc","Body":"{\r\n \"operationId\": \"4c1864d4-0773-407e-96c9-f8620e6317c4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:04:20.3823222+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/4c1864d4-0773-407e-96c9-f8620e6317c4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14961","StatusCode":"200","x-ms-correlation-request-id":"6d4ce9b7-2d21-4186-ab02-f1512689d4c4","Date":"Mon, 19 Oct 2015 20:09:17 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200918Z:6d4ce9b7-2d21-4186-ab02-f1512689d4c4","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"58124be7-4dc4-4f57-bdf5-a960338a7c2e","Body":"{\r\n \"operationId\": \"4c1864d4-0773-407e-96c9-f8620e6317c4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:04:20.3823222+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/4c1864d4-0773-407e-96c9-f8620e6317c4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14960","StatusCode":"200","x-ms-correlation-request-id":"05ca4653-886c-4681-a097-ca2fa06b1c73","Date":"Mon, 19 Oct 2015 20:09:28 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200929Z:05ca4653-886c-4681-a097-ca2fa06b1c73","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"d3011aca-f574-4aac-adbc-1567003f8145","Body":"{\r\n \"operationId\": \"4c1864d4-0773-407e-96c9-f8620e6317c4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:04:20.3823222+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/4c1864d4-0773-407e-96c9-f8620e6317c4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14959","StatusCode":"200","x-ms-correlation-request-id":"5b8debc3-e3d6-47ba-8e93-0f44fbe0a358","Date":"Mon, 19 Oct 2015 20:09:39 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200939Z:5b8debc3-e3d6-47ba-8e93-0f44fbe0a358","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"69a45353-46a7-45d4-987a-be38a152623b","Body":"{\r\n \"operationId\": \"4c1864d4-0773-407e-96c9-f8620e6317c4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:04:20.3823222+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/4c1864d4-0773-407e-96c9-f8620e6317c4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14958","StatusCode":"200","x-ms-correlation-request-id":"573ff007-c1e6-43ab-98ca-caac74170bb6","Date":"Mon, 19 Oct 2015 20:09:49 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200949Z:573ff007-c1e6-43ab-98ca-caac74170bb6","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"d3f68c9e-f7f8-4955-b80b-86554799d269","Body":"{\r\n \"operationId\": \"4c1864d4-0773-407e-96c9-f8620e6317c4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:04:20.3823222+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/4c1864d4-0773-407e-96c9-f8620e6317c4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14957","StatusCode":"200","x-ms-correlation-request-id":"cc2882ec-ebaa-41eb-a7c0-92048e8c4ba2","Date":"Mon, 19 Oct 2015 20:09:59 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200959Z:cc2882ec-ebaa-41eb-a7c0-92048e8c4ba2","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"7a88fb8c-6599-4ede-86f0-aa53216e7a9c","Body":"{\r\n \"operationId\": \"4c1864d4-0773-407e-96c9-f8620e6317c4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:04:20.3823222+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/4c1864d4-0773-407e-96c9-f8620e6317c4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14956","StatusCode":"200","x-ms-correlation-request-id":"541ff657-5f3e-42bf-8027-053b70f25df3","Date":"Mon, 19 Oct 2015 20:10:09 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T201010Z:541ff657-5f3e-42bf-8027-053b70f25df3","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"ed7c404f-701a-482c-8772-19dbdd16e6d1","Body":"{\r\n \"operationId\": \"4c1864d4-0773-407e-96c9-f8620e6317c4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:04:20.3823222+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/4c1864d4-0773-407e-96c9-f8620e6317c4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14955","StatusCode":"200","x-ms-correlation-request-id":"2a48069d-3a2c-4e9b-bd35-e908267e27e8","Date":"Mon, 19 Oct 2015 20:10:20 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T201020Z:2a48069d-3a2c-4e9b-bd35-e908267e27e8","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"320cf456-a0a4-4839-8b2d-66e7814bb814","Body":"{\r\n \"operationId\": \"4c1864d4-0773-407e-96c9-f8620e6317c4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:04:20.3823222+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/4c1864d4-0773-407e-96c9-f8620e6317c4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14954","StatusCode":"200","x-ms-correlation-request-id":"f01d84ec-164d-45e4-8874-6133a11d046c","Date":"Mon, 19 Oct 2015 20:10:30 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T201030Z:f01d84ec-164d-45e4-8874-6133a11d046c","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"559d8252-8293-44dc-af0e-8b923d2034f5","Body":"{\r\n \"operationId\": \"4c1864d4-0773-407e-96c9-f8620e6317c4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:04:20.3823222+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/4c1864d4-0773-407e-96c9-f8620e6317c4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14953","StatusCode":"200","x-ms-correlation-request-id":"52c2a4a1-b2a9-4cf2-8d8d-0058942f0960","Date":"Mon, 19 Oct 2015 20:10:40 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T201040Z:52c2a4a1-b2a9-4cf2-8d8d-0058942f0960","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"d99b2db0-ac23-4566-ac79-95583cd53c9e","Body":"{\r\n \"operationId\": \"4c1864d4-0773-407e-96c9-f8620e6317c4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:04:20.3823222+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/4c1864d4-0773-407e-96c9-f8620e6317c4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14952","StatusCode":"200","x-ms-correlation-request-id":"887c5c80-f6f4-4aea-af55-a0c057df7514","Date":"Mon, 19 Oct 2015 20:10:50 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T201051Z:887c5c80-f6f4-4aea-af55-a0c057df7514","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"34c74bec-21cb-4f40-8d20-0fe4d4ce6fe7","Body":"{\r\n \"operationId\": \"4c1864d4-0773-407e-96c9-f8620e6317c4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:04:20.3823222+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/4c1864d4-0773-407e-96c9-f8620e6317c4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14951","StatusCode":"200","x-ms-correlation-request-id":"4be96f04-d371-48ba-9f2b-2ab4195f0479","Date":"Mon, 19 Oct 2015 20:11:01 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T201101Z:4be96f04-d371-48ba-9f2b-2ab4195f0479","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"3f01b7cf-8042-4212-8d8e-9ae64d7052ad","Body":"{\r\n \"operationId\": \"4c1864d4-0773-407e-96c9-f8620e6317c4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:04:20.3823222+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/4c1864d4-0773-407e-96c9-f8620e6317c4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14950","StatusCode":"200","x-ms-correlation-request-id":"711ed2a2-6010-4190-96dc-91734afd125c","Date":"Mon, 19 Oct 2015 20:11:11 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T201111Z:711ed2a2-6010-4190-96dc-91734afd125c","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"333f6872-7434-4f17-ba8c-1c0c0b547f12","Body":"{\r\n \"operationId\": \"4c1864d4-0773-407e-96c9-f8620e6317c4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:04:20.3823222+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/4c1864d4-0773-407e-96c9-f8620e6317c4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14949","StatusCode":"200","x-ms-correlation-request-id":"e7d4e7dc-ac1d-4e06-9189-e92029380030","Date":"Mon, 19 Oct 2015 20:11:21 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T201121Z:e7d4e7dc-ac1d-4e06-9189-e92029380030","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"a563c739-8fc0-4554-a610-d8e83defc45d","Body":"{\r\n \"operationId\": \"4c1864d4-0773-407e-96c9-f8620e6317c4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:04:20.3823222+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/4c1864d4-0773-407e-96c9-f8620e6317c4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14948","StatusCode":"200","x-ms-correlation-request-id":"1568c24d-e592-4805-bdc7-c48343842b23","Date":"Mon, 19 Oct 2015 20:11:31 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T201132Z:1568c24d-e592-4805-bdc7-c48343842b23","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"972401bd-49e7-4b14-bdad-273050a2e0e3","Body":"{\r\n \"operationId\": \"4c1864d4-0773-407e-96c9-f8620e6317c4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:04:20.3823222+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/4c1864d4-0773-407e-96c9-f8620e6317c4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14947","StatusCode":"200","x-ms-correlation-request-id":"e49304bf-56a0-4dfc-9ac0-efdb1d975faf","Date":"Mon, 19 Oct 2015 20:11:42 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T201142Z:e49304bf-56a0-4dfc-9ac0-efdb1d975faf","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"1d685649-fdc9-412b-9741-229c287fa9cf","Body":"{\r\n \"operationId\": \"4c1864d4-0773-407e-96c9-f8620e6317c4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:04:20.3823222+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/4c1864d4-0773-407e-96c9-f8620e6317c4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14946","StatusCode":"200","x-ms-correlation-request-id":"6f352a64-849b-4011-91da-a9e6dd97725a","Date":"Mon, 19 Oct 2015 20:11:52 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T201152Z:6f352a64-849b-4011-91da-a9e6dd97725a","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"509af481-e745-4df3-b416-8fc6a4032cb5","Body":"{\r\n \"operationId\": \"4c1864d4-0773-407e-96c9-f8620e6317c4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:04:20.3823222+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/4c1864d4-0773-407e-96c9-f8620e6317c4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14945","StatusCode":"200","x-ms-correlation-request-id":"fc38a777-bb3f-4b64-a54c-b3618f71caa3","Date":"Mon, 19 Oct 2015 20:12:02 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T201202Z:fc38a777-bb3f-4b64-a54c-b3618f71caa3","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"a79c4041-9b71-440b-ac1a-089c9a21e7b2","Body":"{\r\n \"operationId\": \"4c1864d4-0773-407e-96c9-f8620e6317c4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:04:20.3823222+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/4c1864d4-0773-407e-96c9-f8620e6317c4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14944","StatusCode":"200","x-ms-correlation-request-id":"197453a3-42f2-4057-8dc4-dbea68342ed1","Date":"Mon, 19 Oct 2015 20:12:12 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T201213Z:197453a3-42f2-4057-8dc4-dbea68342ed1","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"b2cf214a-77ad-431a-b0e4-f04fac3b1fcf","Body":"{\r\n \"operationId\": \"4c1864d4-0773-407e-96c9-f8620e6317c4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:04:20.3823222+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/4c1864d4-0773-407e-96c9-f8620e6317c4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14943","StatusCode":"200","x-ms-correlation-request-id":"d28dc5a8-8a39-4b17-a210-4f99fd21d8ba","Date":"Mon, 19 Oct 2015 20:12:22 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T201223Z:d28dc5a8-8a39-4b17-a210-4f99fd21d8ba","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"57f7d90d-92dc-4ed7-b42c-3e09ceca87f2","Body":"{\r\n \"operationId\": \"4c1864d4-0773-407e-96c9-f8620e6317c4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:04:20.3823222+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/4c1864d4-0773-407e-96c9-f8620e6317c4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14942","StatusCode":"200","x-ms-correlation-request-id":"b715e5f5-94a6-4534-b36f-a630b5c7c04f","Date":"Mon, 19 Oct 2015 20:12:32 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T201233Z:b715e5f5-94a6-4534-b36f-a630b5c7c04f","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"f45a96aa-db13-4078-a18e-a0ebc1b78ac6","Body":"{\r\n \"operationId\": \"4c1864d4-0773-407e-96c9-f8620e6317c4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:04:20.3823222+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/4c1864d4-0773-407e-96c9-f8620e6317c4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14941","StatusCode":"200","x-ms-correlation-request-id":"e53911f5-4267-4fb0-9397-fd61204b4cf0","Date":"Mon, 19 Oct 2015 20:12:42 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T201243Z:e53911f5-4267-4fb0-9397-fd61204b4cf0","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"a30d203a-ebbb-45d4-a5f0-37752b6f70b6","Body":"{\r\n \"operationId\": \"4c1864d4-0773-407e-96c9-f8620e6317c4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:04:20.3823222+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/4c1864d4-0773-407e-96c9-f8620e6317c4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14940","StatusCode":"200","x-ms-correlation-request-id":"4ec54bb5-ef8a-4599-9036-80525ac13172","Date":"Mon, 19 Oct 2015 20:12:53 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T201254Z:4ec54bb5-ef8a-4599-9036-80525ac13172","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"ede62e47-14d2-41b7-bb80-8a81966dae85","Body":"{\r\n \"operationId\": \"4c1864d4-0773-407e-96c9-f8620e6317c4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:04:20.3823222+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/4c1864d4-0773-407e-96c9-f8620e6317c4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14939","StatusCode":"200","x-ms-correlation-request-id":"70e949e0-77c5-4a63-86e5-d0d87dae74f9","Date":"Mon, 19 Oct 2015 20:13:04 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T201304Z:70e949e0-77c5-4a63-86e5-d0d87dae74f9","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"e50250a4-14ce-4514-ba63-a367d3ea0075","Body":"{\r\n \"operationId\": \"4c1864d4-0773-407e-96c9-f8620e6317c4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:04:20.3823222+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/4c1864d4-0773-407e-96c9-f8620e6317c4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14938","StatusCode":"200","x-ms-correlation-request-id":"71e0a560-2346-4282-9569-fef7116a391d","Date":"Mon, 19 Oct 2015 20:13:14 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T201314Z:71e0a560-2346-4282-9569-fef7116a391d","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"5255dd28-33ab-4c71-a670-7c0555669437","Body":"{\r\n \"operationId\": \"4c1864d4-0773-407e-96c9-f8620e6317c4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:04:20.3823222+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/4c1864d4-0773-407e-96c9-f8620e6317c4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14937","StatusCode":"200","x-ms-correlation-request-id":"d9287209-9be6-44e0-9674-eff985baa59f","Date":"Mon, 19 Oct 2015 20:13:24 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T201325Z:d9287209-9be6-44e0-9674-eff985baa59f","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"df8323fc-6629-40a6-9b87-49435f107f8a","Body":"{\r\n \"operationId\": \"4c1864d4-0773-407e-96c9-f8620e6317c4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:04:20.3823222+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/4c1864d4-0773-407e-96c9-f8620e6317c4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14936","StatusCode":"200","x-ms-correlation-request-id":"c3442fd3-9d07-41b6-bb8d-ab430fef703b","Date":"Mon, 19 Oct 2015 20:13:35 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T201335Z:c3442fd3-9d07-41b6-bb8d-ab430fef703b","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"48605d6a-b7ee-40dd-8921-81873b9976df","Body":"{\r\n \"operationId\": \"4c1864d4-0773-407e-96c9-f8620e6317c4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:04:20.3823222+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/4c1864d4-0773-407e-96c9-f8620e6317c4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14935","StatusCode":"200","x-ms-correlation-request-id":"c0662c8f-1677-4a4a-9d76-0533674d947b","Date":"Mon, 19 Oct 2015 20:13:45 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T201345Z:c0662c8f-1677-4a4a-9d76-0533674d947b","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"ad132329-0d95-4417-b227-d30cadc7b0d9","Body":"{\r\n \"operationId\": \"4c1864d4-0773-407e-96c9-f8620e6317c4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:04:20.3823222+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/4c1864d4-0773-407e-96c9-f8620e6317c4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14934","StatusCode":"200","x-ms-correlation-request-id":"a4240c81-adc5-4fd2-b680-8421c53be992","Date":"Mon, 19 Oct 2015 20:13:55 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T201355Z:a4240c81-adc5-4fd2-b680-8421c53be992","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"481cda71-4d17-44c8-a292-86d8ac85233c","Body":"{\r\n \"operationId\": \"4c1864d4-0773-407e-96c9-f8620e6317c4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:04:20.3823222+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/4c1864d4-0773-407e-96c9-f8620e6317c4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14933","StatusCode":"200","x-ms-correlation-request-id":"4e731f05-1612-4b58-baa4-0232a1974728","Date":"Mon, 19 Oct 2015 20:14:05 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T201406Z:4e731f05-1612-4b58-baa4-0232a1974728","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"6ed28419-828f-4a15-8f38-479ce04bdda6","Body":"{\r\n \"operationId\": \"4c1864d4-0773-407e-96c9-f8620e6317c4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:04:20.3823222+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/4c1864d4-0773-407e-96c9-f8620e6317c4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14932","StatusCode":"200","x-ms-correlation-request-id":"8e85e09a-e31a-4d08-a20f-3174f65a7046","Date":"Mon, 19 Oct 2015 20:14:15 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T201416Z:8e85e09a-e31a-4d08-a20f-3174f65a7046","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"35608e8c-75ae-4b2c-8108-2cc65120e2bc","Body":"{\r\n \"operationId\": \"4c1864d4-0773-407e-96c9-f8620e6317c4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:04:20.3823222+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/4c1864d4-0773-407e-96c9-f8620e6317c4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14931","StatusCode":"200","x-ms-correlation-request-id":"0eb7d3d4-0923-4479-8310-fc00a4462886","Date":"Mon, 19 Oct 2015 20:14:26 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T201427Z:0eb7d3d4-0923-4479-8310-fc00a4462886","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"9f017afa-1466-4316-b75a-d189a0fa9167","Body":"{\r\n \"operationId\": \"4c1864d4-0773-407e-96c9-f8620e6317c4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:04:20.3823222+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/4c1864d4-0773-407e-96c9-f8620e6317c4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14930","StatusCode":"200","x-ms-correlation-request-id":"9f644703-45ca-4a97-a694-f04d76b9a1e2","Date":"Mon, 19 Oct 2015 20:14:36 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T201437Z:9f644703-45ca-4a97-a694-f04d76b9a1e2","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"38484b8b-6568-4e3a-ab8c-332bbc45fd5b","Body":"{\r\n \"operationId\": \"4c1864d4-0773-407e-96c9-f8620e6317c4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:04:20.3823222+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/4c1864d4-0773-407e-96c9-f8620e6317c4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14929","StatusCode":"200","x-ms-correlation-request-id":"924d1c71-2c92-48fd-b248-d9d1393e6374","Date":"Mon, 19 Oct 2015 20:14:46 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T201447Z:924d1c71-2c92-48fd-b248-d9d1393e6374","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"d7656e1e-e497-4b86-a5d5-0961e9ad8fb9","Body":"{\r\n \"operationId\": \"4c1864d4-0773-407e-96c9-f8620e6317c4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:04:20.3823222+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/4c1864d4-0773-407e-96c9-f8620e6317c4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14928","StatusCode":"200","x-ms-correlation-request-id":"36295dad-2371-461e-8929-cd8a3386ca65","Date":"Mon, 19 Oct 2015 20:14:56 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T201457Z:36295dad-2371-461e-8929-cd8a3386ca65","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"8b49779b-8bc8-486b-8296-5adcb4d3d50c","Body":"{\r\n \"operationId\": \"4c1864d4-0773-407e-96c9-f8620e6317c4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:04:20.3823222+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/4c1864d4-0773-407e-96c9-f8620e6317c4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14927","StatusCode":"200","x-ms-correlation-request-id":"8261d412-6f07-44cd-ac7b-ddc4f756af99","Date":"Mon, 19 Oct 2015 20:15:07 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T201508Z:8261d412-6f07-44cd-ac7b-ddc4f756af99","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"091572c1-1d75-45cf-abfc-79dfbee4c86b","Body":"{\r\n \"operationId\": \"4c1864d4-0773-407e-96c9-f8620e6317c4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:04:20.3823222+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/4c1864d4-0773-407e-96c9-f8620e6317c4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14926","StatusCode":"200","x-ms-correlation-request-id":"900cf157-3795-4045-9bad-718e4937bc2c","Date":"Mon, 19 Oct 2015 20:15:18 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T201518Z:900cf157-3795-4045-9bad-718e4937bc2c","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"99d84651-2e02-4e46-9d80-9564ed3ebe2d","Body":"{\r\n \"operationId\": \"4c1864d4-0773-407e-96c9-f8620e6317c4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:04:20.3823222+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/4c1864d4-0773-407e-96c9-f8620e6317c4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14925","StatusCode":"200","x-ms-correlation-request-id":"0923c771-aad3-41f5-874d-06c2912a25ee","Date":"Mon, 19 Oct 2015 20:15:28 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T201528Z:0923c771-aad3-41f5-874d-06c2912a25ee","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"2f52763b-f1a2-49f7-a708-6981018c0b97","Body":"{\r\n \"operationId\": \"4c1864d4-0773-407e-96c9-f8620e6317c4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:04:20.3823222+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/4c1864d4-0773-407e-96c9-f8620e6317c4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14924","StatusCode":"200","x-ms-correlation-request-id":"ca6c2228-b691-4f95-8598-3b92f3b3afb8","Date":"Mon, 19 Oct 2015 20:15:38 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T201538Z:ca6c2228-b691-4f95-8598-3b92f3b3afb8","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"2db3ffa0-5b6b-4014-b437-713e9df95cee","Body":"{\r\n \"operationId\": \"4c1864d4-0773-407e-96c9-f8620e6317c4\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T20:04:20.3823222+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/4c1864d4-0773-407e-96c9-f8620e6317c4?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14923","StatusCode":"200","x-ms-correlation-request-id":"3bc09f44-0407-4ec5-a8dd-978d181cb57e","Date":"Mon, 19 Oct 2015 20:15:48 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T201549Z:3bc09f44-0407-4ec5-a8dd-978d181cb57e","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"191","x-ms-request-id":"1db21603-7106-4e38-9e7d-7e5c35145ac1","Body":"{\r\n \"operationId\": \"4c1864d4-0773-407e-96c9-f8620e6317c4\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2015-10-19T20:04:20.3823222+00:00\",\r\n \"endTime\": \"2015-10-19T20:15:47.0385687+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnuliwd/providers/Microsoft.Network/networkInterfaces/javatest1nicnlzihi?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14983","StatusCode":"200","x-ms-correlation-request-id":"7c53d3d8-9265-4a71-90a2-cc1069b496ed","Date":"Mon, 19 Oct 2015 20:15:49 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","ETag":"W/\"8201832b-28a1-41c0-88f3-f927785da689\"","x-ms-routing-request-id":"WESTUS:20151019T201550Z:7c53d3d8-9265-4a71-90a2-cc1069b496ed","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1616","x-ms-request-id":"b7e2272a-42dd-4c7b-9a9f-381a95a8d8c1","Body":"{\r\n \"name\": \"javatest1nicnlzihi\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnuliwd/providers/Microsoft.Network/networkInterfaces/javatest1nicnlzihi\",\r\n \"etag\": \"W/\\\"8201832b-28a1-41c0-88f3-f927785da689\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a480c0cb-02af-4e72-b907-7a11319dc12b\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"javatest1ipcnnyimz\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnuliwd/providers/Microsoft.Network/networkInterfaces/javatest1nicnlzihi/ipConfigurations/javatest1ipcnnyimz\",\r\n \"etag\": \"W/\\\"8201832b-28a1-41c0-88f3-f927785da689\\\"\",\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/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnuliwd/providers/Microsoft.Network/virtualNetworks/javatest1vnetnkamzz/subnets/javatest1subnnickjs\"\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-A0-5A-4A\",\r\n \"enableIPForwarding\": false,\r\n \"primary\": false,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnuliwd/providers/Microsoft.Compute/virtualMachines/javatestVMcuyrn\"\r\n }\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnuliwd/providers/Microsoft.Network/networkInterfaces/javatest2nicnuudqd?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14982","StatusCode":"200","x-ms-correlation-request-id":"69c4bd30-aff6-4b75-af2f-ac15aa4549c2","Date":"Mon, 19 Oct 2015 20:15:49 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","ETag":"W/\"8e42b2db-6263-44c3-9d95-71f8e659123d\"","x-ms-routing-request-id":"WESTUS:20151019T201550Z:69c4bd30-aff6-4b75-af2f-ac15aa4549c2","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1615","x-ms-request-id":"fd5078b6-f2e1-4111-ada0-e8b2dd75eeb5","Body":"{\r\n \"name\": \"javatest2nicnuudqd\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnuliwd/providers/Microsoft.Network/networkInterfaces/javatest2nicnuudqd\",\r\n \"etag\": \"W/\\\"8e42b2db-6263-44c3-9d95-71f8e659123d\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8fcdc419-0586-4917-8990-74de464fd4c1\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"javatest2ipcnyyrwi\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnuliwd/providers/Microsoft.Network/networkInterfaces/javatest2nicnuudqd/ipConfigurations/javatest2ipcnyyrwi\",\r\n \"etag\": \"W/\\\"8e42b2db-6263-44c3-9d95-71f8e659123d\\\"\",\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/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnuliwd/providers/Microsoft.Network/virtualNetworks/javatest1vnetnkamzz/subnets/javatest1subnnickjs\"\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-A0-2D-76\",\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnuliwd/providers/Microsoft.Compute/virtualMachines/javatestVMcuyrn\"\r\n }\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"}] \ No newline at end of file diff --git a/resource-management/azure-mgmt-utility/src/test/resources/session-records/testVMWithWindowsProfile.json b/resource-management/azure-mgmt-utility/src/test/resources/session-records/testVMWithWindowsProfile.json index 169484283b68..e44615d5518a 100644 --- a/resource-management/azure-mgmt-utility/src/test/resources/session-records/testVMWithWindowsProfile.json +++ b/resource-management/azure-mgmt-utility/src/test/resources/session-records/testVMWithWindowsProfile.json @@ -1 +1 @@ -[{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/SouthEastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?api-version=2015-06-15&$top=1","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14995","StatusCode":"200","x-ms-correlation-request-id":"60fc6199-38d5-4df1-84e8-8eb5ee765cc0","Date":"Fri, 14 Aug 2015 22:46:40 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T224641Z:60fc6199-38d5-4df1-84e8-8eb5ee765cc0","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"313","x-ms-request-id":"86031105-5ff4-44c3-a9a2-1a3462bcc582","Body":"[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201505\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201505\"\r\n }\r\n]","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/javatestrgnarvcd?api-version=2014-04-01-preview","Content-Type":"application/json; charset=utf-8"},{"x-ms-ratelimit-remaining-subscription-writes":"1197","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"c1a6ee26-b54a-493e-879b-fd97d853f2e3","Date":"Fri, 14 Aug 2015 22:46:42 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T224643Z:c1a6ee26-b54a-493e-879b-fd97d853f2e3","Expires":"-1","Content-Length":"192","x-ms-request-id":"c1a6ee26-b54a-493e-879b-fd97d853f2e3","Body":"{\"id\":\"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnarvcd\",\"name\":\"javatestrgnarvcd\",\"location\":\"southeastasia\",\"properties\":{\"provisioningState\":\"Succeeded\"}}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnarvcd/providers/Microsoft.Storage/storageAccounts/javatest1sanqsjtr?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-ratelimit-remaining-subscription-writes":"1194","Pragma":"no-cache","StatusCode":"202","x-ms-correlation-request-id":"872610db-a2a6-4c3d-9786-6c37c5a5110f","Date":"Fri, 14 Aug 2015 22:46:47 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"25","x-ms-routing-request-id":"WESTUS:20150814T224647Z:872610db-a2a6-4c3d-9786-6c37c5a5110f","Expires":"-1","Content-Length":"4","x-ms-request-id":"f10088bf-e676-4fca-816a-2c7b45ce5896","Body":"null","Content-Type":"application/json; charset=utf-8","Location":"https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/f10088bf-e676-4fca-816a-2c7b45ce5896?monitor=true&api-version=2015-05-01-preview"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/f10088bf-e676-4fca-816a-2c7b45ce5896?monitor=true&api-version=2015-05-01-preview"},{"Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14994","StatusCode":"202","x-ms-correlation-request-id":"91220bc6-d636-4698-9b6e-3f9c5055eef7","Date":"Fri, 14 Aug 2015 22:46:47 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"25","x-ms-routing-request-id":"WESTUS:20150814T224647Z:91220bc6-d636-4698-9b6e-3f9c5055eef7","Expires":"-1","Content-Length":"4","x-ms-request-id":"1e4da5d2-2e06-4f49-b0c5-d0933fba9024","Body":"null","Content-Type":"application/json; charset=utf-8","Location":"https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/f10088bf-e676-4fca-816a-2c7b45ce5896?monitor=true&api-version=2015-05-01-preview"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/operations/f10088bf-e676-4fca-816a-2c7b45ce5896?monitor=true&api-version=2015-05-01-preview"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14993","StatusCode":"200","x-ms-correlation-request-id":"a89f50ce-b8e3-47b8-8b91-400ff1759cef","Date":"Fri, 14 Aug 2015 22:47:12 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T224712Z:a89f50ce-b8e3-47b8-8b91-400ff1759cef","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"73","x-ms-request-id":"dbc49222-6d70-479d-a731-4b84a567022f","Body":"{\"properties\":{\"accountType\":\"Standard_GRS\"},\"location\":\"Southeast Asia\"}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnarvcd/providers/Microsoft.Storage/storageAccounts?api-version=2015-05-01-preview"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14983","StatusCode":"200","x-ms-correlation-request-id":"e5bbcd79-52c0-4f35-9c25-bab825befe47","Date":"Fri, 14 Aug 2015 22:47:12 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T224713Z:e5bbcd79-52c0-4f35-9c25-bab825befe47","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"728","x-ms-request-id":"6dee23a9-ea8a-4878-9756-9dfb4b7debaf","Body":"{\"value\":[{\"id\":\"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnarvcd/providers/Microsoft.Storage/storageAccounts/javatest1sanqsjtr\",\"name\":\"javatest1sanqsjtr\",\"location\":\"Southeast Asia\",\"type\":\"Microsoft.Storage/storageAccounts\",\"properties\":{\"provisioningState\":\"Succeeded\",\"accountType\":\"Standard_GRS\",\"primaryEndpoints\":{\"blob\":\"https://javatest1sanqsjtr.blob.core.windows.net/\",\"queue\":\"https://javatest1sanqsjtr.queue.core.windows.net/\",\"table\":\"https://javatest1sanqsjtr.table.core.windows.net/\"},\"primaryLocation\":\"Southeast Asia\",\"statusOfPrimary\":\"Available\",\"secondaryLocation\":\"East Asia\",\"statusOfSecondary\":\"Available\",\"creationTime\":\"2015-08-14T22:46:45.7227631Z\"}}],\"nextLink\":\"\"}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnarvcd/providers/Microsoft.Network/virtualnetworks/javatest1vnetnywsyl?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-ratelimit-remaining-subscription-writes":"1195","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"9d849a1a-cc86-4517-af66-8c09067b5b1b","Date":"Fri, 14 Aug 2015 22:47:17 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"10","x-ms-routing-request-id":"WESTUS:20150814T224718Z:9d849a1a-cc86-4517-af66-8c09067b5b1b","Expires":"-1","Content-Length":"1045","Azure-AsyncOperation":"https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/7704fa42-7dff-42a4-ad6b-48f1a8e7485c?api-version=2015-05-01-preview","x-ms-request-id":"7704fa42-7dff-42a4-ad6b-48f1a8e7485c","Body":"{\r\n \"name\": \"javatest1vnetnywsyl\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnarvcd/providers/Microsoft.Network/virtualNetworks/javatest1vnetnywsyl\",\r\n \"etag\": \"W/\\\"355b3db5-002c-4a7e-8506-0865e8e84945\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"412f45b3-6c2a-4702-a7b8-3b52bbbad4ee\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"javatest1subnnohrdz\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnarvcd/providers/Microsoft.Network/virtualNetworks/javatest1vnetnywsyl/subnets/javatest1subnnohrdz\",\r\n \"etag\": \"W/\\\"355b3db5-002c-4a7e-8506-0865e8e84945\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"x-ms-version":"2015-05-01-preview","User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/7704fa42-7dff-42a4-ad6b-48f1a8e7485c?api-version=2015-05-01-preview"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14994","StatusCode":"200","x-ms-correlation-request-id":"d521213e-87bb-48ff-a5f7-9159a1eb5ad2","Date":"Fri, 14 Aug 2015 22:47:18 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T224719Z:d521213e-87bb-48ff-a5f7-9159a1eb5ad2","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"29","x-ms-request-id":"9354aafa-cd8d-4e2f-b469-73ee124814a9","Body":"{\r\n \"status\": \"Succeeded\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnarvcd/providers/Microsoft.Network/virtualnetworks/javatest1vnetnywsyl?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14997","StatusCode":"200","x-ms-correlation-request-id":"ab88e37b-3615-422e-bbd9-db68ccd1d687","Date":"Fri, 14 Aug 2015 22:47:19 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","ETag":"W/\"e7adb557-8665-4cb8-8dc6-54c0bf2273e2\"","x-ms-routing-request-id":"WESTUS:20150814T224720Z:ab88e37b-3615-422e-bbd9-db68ccd1d687","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1047","x-ms-request-id":"816f5458-fd9f-4945-96e2-f8405cf007c8","Body":"{\r\n \"name\": \"javatest1vnetnywsyl\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnarvcd/providers/Microsoft.Network/virtualNetworks/javatest1vnetnywsyl\",\r\n \"etag\": \"W/\\\"e7adb557-8665-4cb8-8dc6-54c0bf2273e2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"412f45b3-6c2a-4702-a7b8-3b52bbbad4ee\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"javatest1subnnohrdz\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnarvcd/providers/Microsoft.Network/virtualNetworks/javatest1vnetnywsyl/subnets/javatest1subnnohrdz\",\r\n \"etag\": \"W/\\\"e7adb557-8665-4cb8-8dc6-54c0bf2273e2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnarvcd/providers/Microsoft.Network/networkInterfaces/javatest1nicnvages?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-ratelimit-remaining-subscription-writes":"1193","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"63c85e2b-5280-4e63-a4d1-e53c7e5d090e","Date":"Fri, 14 Aug 2015 22:47:22 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T224723Z:63c85e2b-5280-4e63-a4d1-e53c7e5d090e","Expires":"-1","Content-Length":"1234","Azure-AsyncOperation":"https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/8f3613bb-46f7-414a-9dc6-698d71c2782b?api-version=2015-05-01-preview","x-ms-request-id":"8f3613bb-46f7-414a-9dc6-698d71c2782b","Body":"{\r\n \"name\": \"javatest1nicnvages\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnarvcd/providers/Microsoft.Network/networkInterfaces/javatest1nicnvages\",\r\n \"etag\": \"W/\\\"5be72516-96b8-41f9-9750-7050afe4bb91\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"01a655db-968d-4757-9ed6-7f558273e838\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"javatest1ipcnbjkna\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnarvcd/providers/Microsoft.Network/networkInterfaces/javatest1nicnvages/ipConfigurations/javatest1ipcnbjkna\",\r\n \"etag\": \"W/\\\"5be72516-96b8-41f9-9750-7050afe4bb91\\\"\",\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnarvcd/providers/Microsoft.Network/virtualNetworks/javatest1vnetnywsyl/subnets/javatest1subnnohrdz\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"x-ms-version":"2015-05-01-preview","User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/8f3613bb-46f7-414a-9dc6-698d71c2782b?api-version=2015-05-01-preview"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14992","StatusCode":"200","x-ms-correlation-request-id":"feb3a13b-7de8-4059-b640-d0d239b1ccb8","Date":"Fri, 14 Aug 2015 22:47:23 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T224724Z:feb3a13b-7de8-4059-b640-d0d239b1ccb8","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"29","x-ms-request-id":"acce3cd5-26bf-465e-90c8-285bbec33c4c","Body":"{\r\n \"status\": \"Succeeded\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnarvcd/providers/Microsoft.Network/networkInterfaces/javatest1nicnvages?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14996","StatusCode":"200","x-ms-correlation-request-id":"028de1f4-9d54-4a5c-a509-ca09b7d20d86","Date":"Fri, 14 Aug 2015 22:47:25 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","ETag":"W/\"5be72516-96b8-41f9-9750-7050afe4bb91\"","x-ms-routing-request-id":"WESTUS:20150814T224725Z:028de1f4-9d54-4a5c-a509-ca09b7d20d86","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1234","x-ms-request-id":"3d34ac86-fd70-481f-b573-d95c4c4dc216","Body":"{\r\n \"name\": \"javatest1nicnvages\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnarvcd/providers/Microsoft.Network/networkInterfaces/javatest1nicnvages\",\r\n \"etag\": \"W/\\\"5be72516-96b8-41f9-9750-7050afe4bb91\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"01a655db-968d-4757-9ed6-7f558273e838\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"javatest1ipcnbjkna\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnarvcd/providers/Microsoft.Network/networkInterfaces/javatest1nicnvages/ipConfigurations/javatest1ipcnbjkna\",\r\n \"etag\": \"W/\\\"5be72516-96b8-41f9-9750-7050afe4bb91\\\"\",\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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnarvcd/providers/Microsoft.Network/virtualNetworks/javatest1vnetnywsyl/subnets/javatest1subnnohrdz\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {},\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnarvcd/providers/Microsoft.Compute/availabilitySets/javatest1asnfwigf?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130834748847794074","x-ms-ratelimit-remaining-subscription-writes":"1194","Pragma":"no-cache","StatusCode":"200","x-ms-correlation-request-id":"fbd57db1-c885-446b-b6cf-17912decca22","Date":"Fri, 14 Aug 2015 22:47:28 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T224729Z:fbd57db1-c885-446b-b6cf-17912decca22","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"387","x-ms-request-id":"53ce4292-7584-42fe-a499-a5e2f034042c","Body":"{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnarvcd/providers/Microsoft.Compute/availabilitySets/javatest1asnfwigf\",\r\n \"name\": \"javatest1asnfwigf\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnarvcd/providers/Microsoft.Compute/virtualMachines/javatestVMqfknz?api-version=2015-06-15","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130834748847794074","x-ms-ratelimit-remaining-subscription-writes":"1193","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"c8d43da4-7e3a-45ca-9c2d-418db29a6a20","Date":"Fri, 14 Aug 2015 22:47:32 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T224732Z:c8d43da4-7e3a-45ca-9c2d-418db29a6a20","Expires":"-1","Content-Length":"2923","Azure-AsyncOperation":"https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/3783908b-9e04-4fc2-89ff-0318668c8e2e?api-version=2015-06-15","x-ms-request-id":"3783908b-9e04-4fc2-89ff-0318668c8e2e","Body":"{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnarvcd/providers/Microsoft.Compute/availabilitySets/JAVATEST1ASNFWIGF\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1sanqsjtr.blob.core.windows.net/javatest1connjkzyp/ososvhd.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javatestVMqfknz\",\r\n \"adminUsername\": \"Foo12\",\r\n \"customData\": \"ZWNobyAnSGVsbG8gV29ybGQn\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": false,\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"winRM\": {\r\n \"listeners\": [\r\n {\r\n \"protocol\": \"Http\"\r\n },\r\n {\r\n \"protocol\": \"Https\",\r\n \"certificateUrl\": \"https://javakeyvault.vault.azure.net:443/secrets/javapassword/86b7a82d026544e8aae9dc84bb91027a\"\r\n }\r\n ]\r\n },\r\n \"additionalUnattendContent\": [\r\n {\r\n \"passName\": \"oobeSystem\",\r\n \"componentName\": \"Microsoft-Windows-Shell-Setup\",\r\n \"settingName\": \"AutoLogon\",\r\n \"content\": \"true5Foo12BaR@123rgababaabtrue</PlainText></Password></AutoLogon>\"\r\n }\r\n ]\r\n },\r\n \"secrets\": [\r\n {\r\n \"sourceVault\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javakeyvaultrg/providers/Microsoft.KeyVault/vaults/javakeyvault\"\r\n },\r\n \"vaultCertificates\": [\r\n {\r\n \"certificateUrl\": \"https://javakeyvault.vault.azure.net:443/secrets/javapassword/86b7a82d026544e8aae9dc84bb91027a\",\r\n \"certificateStore\": \"My\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"properties\":{},\"id\":\"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnarvcd/providers/Microsoft.Network/networkInterfaces/javatest1nicnvages\"}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnarvcd/providers/Microsoft.Compute/virtualMachines/javatestVMqfknz\",\r\n \"name\": \"javatestVMqfknz\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/3783908b-9e04-4fc2-89ff-0318668c8e2e?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130834748847794074","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14993","StatusCode":"200","x-ms-correlation-request-id":"02f11e90-9094-48de-8aa5-7b7841fdddfa","Date":"Fri, 14 Aug 2015 22:47:33 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T224733Z:02f11e90-9094-48de-8aa5-7b7841fdddfa","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"440","x-ms-request-id":"084ccce1-984c-42b1-bd57-af4b29c77a9d","Body":"{\r\n \"operationId\": \"3783908b-9e04-4fc2-89ff-0318668c8e2e\",\r\n \"status\": \"Failed\",\r\n \"startTime\": \"2015-08-14T22:47:31.2181652+00:00\",\r\n \"endTime\": \"2015-08-14T22:47:32.1087729+00:00\",\r\n \"error\": {\r\n \"code\": \"KeyVaultDoesNotExist\",\r\n \"message\": \"The Key Vault referenced with the URL: https://javakeyvault.vault.azure.net/secrets/javapassword/86b7a82d026544e8aae9dc84bb91027a?api-version=2014-12-08-preview does not exist.\"\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnarvcd/providers/Microsoft.Compute/virtualMachines/javatestVMqfknz?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130834748847794074","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14992","StatusCode":"200","x-ms-correlation-request-id":"f863243f-43ac-4d4e-a4fb-fe4d45deae28","Date":"Fri, 14 Aug 2015 22:47:33 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T224733Z:f863243f-43ac-4d4e-a4fb-fe4d45deae28","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"2921","x-ms-request-id":"b8120c08-ad42-4c16-b904-c91385d4044e","Body":"{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnarvcd/providers/Microsoft.Compute/availabilitySets/JAVATEST1ASNFWIGF\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1sanqsjtr.blob.core.windows.net/javatest1connjkzyp/ososvhd.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javatestVMqfknz\",\r\n \"adminUsername\": \"Foo12\",\r\n \"customData\": \"ZWNobyAnSGVsbG8gV29ybGQn\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": false,\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"winRM\": {\r\n \"listeners\": [\r\n {\r\n \"protocol\": \"Http\"\r\n },\r\n {\r\n \"protocol\": \"Https\",\r\n \"certificateUrl\": \"https://javakeyvault.vault.azure.net:443/secrets/javapassword/86b7a82d026544e8aae9dc84bb91027a\"\r\n }\r\n ]\r\n },\r\n \"additionalUnattendContent\": [\r\n {\r\n \"passName\": \"oobeSystem\",\r\n \"componentName\": \"Microsoft-Windows-Shell-Setup\",\r\n \"settingName\": \"AutoLogon\",\r\n \"content\": \"<AutoLogon><Enabled>true</Enabled><LogonCount>5</LogonCount><Username>Foo12</Username><Password><Value>BaR@123rgababaab</Value><PlainText>true</PlainText></Password></AutoLogon>\"\r\n }\r\n ]\r\n },\r\n \"secrets\": [\r\n {\r\n \"sourceVault\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javakeyvaultrg/providers/Microsoft.KeyVault/vaults/javakeyvault\"\r\n },\r\n \"vaultCertificates\": [\r\n {\r\n \"certificateUrl\": \"https://javakeyvault.vault.azure.net:443/secrets/javapassword/86b7a82d026544e8aae9dc84bb91027a\",\r\n \"certificateStore\": \"My\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"properties\":{},\"id\":\"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnarvcd/providers/Microsoft.Network/networkInterfaces/javatest1nicnvages\"}]},\r\n \"provisioningState\": \"Failed\"\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnarvcd/providers/Microsoft.Compute/virtualMachines/javatestVMqfknz\",\r\n \"name\": \"javatestVMqfknz\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnarvcd/providers/Microsoft.Compute/virtualMachines/javatestVMqfknz?$expand=instanceView&api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130834748847794074","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14991","StatusCode":"200","x-ms-correlation-request-id":"40b276b6-a8a7-4098-911a-996226b547db","Date":"Fri, 14 Aug 2015 22:47:33 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T224733Z:40b276b6-a8a7-4098-911a-996226b547db","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"3683","x-ms-request-id":"23286bac-fc0f-4988-891e-08d411286443","Body":"{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnarvcd/providers/Microsoft.Compute/availabilitySets/JAVATEST1ASNFWIGF\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1sanqsjtr.blob.core.windows.net/javatest1connjkzyp/ososvhd.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javatestVMqfknz\",\r\n \"adminUsername\": \"Foo12\",\r\n \"customData\": \"ZWNobyAnSGVsbG8gV29ybGQn\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": false,\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"winRM\": {\r\n \"listeners\": [\r\n {\r\n \"protocol\": \"Http\"\r\n },\r\n {\r\n \"protocol\": \"Https\",\r\n \"certificateUrl\": \"https://javakeyvault.vault.azure.net:443/secrets/javapassword/86b7a82d026544e8aae9dc84bb91027a\"\r\n }\r\n ]\r\n },\r\n \"additionalUnattendContent\": [\r\n {\r\n \"passName\": \"oobeSystem\",\r\n \"componentName\": \"Microsoft-Windows-Shell-Setup\",\r\n \"settingName\": \"AutoLogon\",\r\n \"content\": \"<AutoLogon><Enabled>true</Enabled><LogonCount>5</LogonCount><Username>Foo12</Username><Password><Value>BaR@123rgababaab</Value><PlainText>true</PlainText></Password></AutoLogon>\"\r\n }\r\n ]\r\n },\r\n \"secrets\": [\r\n {\r\n \"sourceVault\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javakeyvaultrg/providers/Microsoft.KeyVault/vaults/javakeyvault\"\r\n },\r\n \"vaultCertificates\": [\r\n {\r\n \"certificateUrl\": \"https://javakeyvault.vault.azure.net:443/secrets/javapassword/86b7a82d026544e8aae9dc84bb91027a\",\r\n \"certificateStore\": \"My\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"properties\":{},\"id\":\"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnarvcd/providers/Microsoft.Network/networkInterfaces/javatest1nicnvages\"}]},\r\n \"provisioningState\": \"Failed\",\r\n \"instanceView\": {\r\n \"disks\": [\r\n {\r\n \"name\": \"osdisk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/creating\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Creating\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/failed/KeyVaultDoesNotExist\",\r\n \"level\": \"Error\",\r\n \"displayStatus\": \"Provisioning failed\",\r\n \"message\": \"The Key Vault referenced with the URL: https://javakeyvault.vault.azure.net/secrets/javapassword/86b7a82d026544e8aae9dc84bb91027a?api-version=2014-12-08-preview does not exist.\",\r\n \"time\": \"2015-08-14T22:47:32.061943+00:00\"\r\n }\r\n ]\r\n }\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnarvcd/providers/Microsoft.Compute/virtualMachines/javatestVMqfknz\",\r\n \"name\": \"javatestVMqfknz\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"}] \ No newline at end of file +[{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/SouthEastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?api-version=2015-06-15&$top=1","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14967","StatusCode":"200","x-ms-correlation-request-id":"e24bbaf9-669b-407d-b772-bc9723af8479","Date":"Mon, 19 Oct 2015 20:15:54 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T201555Z:e24bbaf9-669b-407d-b772-bc9723af8479","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"313","x-ms-request-id":"9ea6dfe0-f519-4666-90e5-b9fa139cfa65","Body":"[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201506\",\r\n \"id\": \"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201506\"\r\n }\r\n]","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/javatestrgnpvnxb?api-version=2014-04-01-preview","Content-Type":"application/json; charset=utf-8"},{"x-ms-ratelimit-remaining-subscription-writes":"1182","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"f8f0b5be-1612-4f26-baa6-b614e4cd9fce","Date":"Mon, 19 Oct 2015 20:15:56 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T201556Z:f8f0b5be-1612-4f26-baa6-b614e4cd9fce","Expires":"-1","Content-Length":"192","x-ms-request-id":"f8f0b5be-1612-4f26-baa6-b614e4cd9fce","Body":"{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpvnxb\",\"name\":\"javatestrgnpvnxb\",\"location\":\"southeastasia\",\"properties\":{\"provisioningState\":\"Succeeded\"}}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpvnxb/providers/Microsoft.Storage/storageAccounts/javatest1sanicatv?api-version=2015-06-15","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-ratelimit-remaining-subscription-writes":"1189","Pragma":"no-cache","StatusCode":"202","x-ms-correlation-request-id":"532ef747-eec6-499c-ba5c-7a371ed9a77f","Date":"Mon, 19 Oct 2015 20:15:59 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"25","x-ms-routing-request-id":"WESTUS:20151019T201559Z:532ef747-eec6-499c-ba5c-7a371ed9a77f","Expires":"-1","Content-Length":"0","x-ms-request-id":"532ef747-eec6-499c-ba5c-7a371ed9a77f","Body":"","Location":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/operations/7ddba0e9-cbae-4d92-877d-d5d8ab137c35?monitor=true&api-version=2015-06-15"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/operations/7ddba0e9-cbae-4d92-877d-d5d8ab137c35?monitor=true&api-version=2015-06-15"},{"Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14914","StatusCode":"202","x-ms-correlation-request-id":"384bcf1a-0310-4441-b1c0-ad8e9374a34c","Date":"Mon, 19 Oct 2015 20:15:59 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"25","x-ms-routing-request-id":"WESTUS:20151019T201600Z:384bcf1a-0310-4441-b1c0-ad8e9374a34c","Expires":"-1","Content-Length":"0","x-ms-request-id":"384bcf1a-0310-4441-b1c0-ad8e9374a34c","Body":"","Location":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/operations/7ddba0e9-cbae-4d92-877d-d5d8ab137c35?monitor=true&api-version=2015-06-15"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/operations/7ddba0e9-cbae-4d92-877d-d5d8ab137c35?monitor=true&api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14913","StatusCode":"200","x-ms-correlation-request-id":"332bc94f-f6ab-43b1-bc85-7fa6bd812149","Date":"Mon, 19 Oct 2015 20:16:24 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T201625Z:332bc94f-f6ab-43b1-bc85-7fa6bd812149","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"72","x-ms-request-id":"332bc94f-f6ab-43b1-bc85-7fa6bd812149","Body":"{\"location\":\"SouthEastAsia\",\"properties\":{\"accountType\":\"Standard_LRS\"}}","Content-Type":"application/json"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpvnxb/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14988","StatusCode":"200","x-ms-correlation-request-id":"41f451cf-eb2a-4cea-a075-73ab0152faba","Date":"Mon, 19 Oct 2015 20:16:24 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T201625Z:41f451cf-eb2a-4cea-a075-73ab0152faba","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"717","x-ms-request-id":"41f451cf-eb2a-4cea-a075-73ab0152faba","Body":"{\"value\":[{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpvnxb/providers/Microsoft.Storage/storageAccounts/javatest1sanicatv\",\"location\":\"southeastasia\",\"name\":\"javatest1sanicatv\",\"properties\":{\"accountType\":\"Standard_LRS\",\"creationTime\":\"2015-10-19T20:15:59.3187102Z\",\"primaryEndpoints\":{\"blob\":\"https://javatest1sanicatv.blob.core.windows.net/\",\"file\":\"https://javatest1sanicatv.file.core.windows.net/\",\"queue\":\"https://javatest1sanicatv.queue.core.windows.net/\",\"table\":\"https://javatest1sanicatv.table.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}]}\n","Content-Type":"application/json"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpvnxb/providers/Microsoft.Network/virtualnetworks/javatest1vnetnxcvmc?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-ratelimit-remaining-subscription-writes":"1191","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"356be096-e64e-4425-a25e-0b48692637f3","Date":"Mon, 19 Oct 2015 20:16:29 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"10","x-ms-routing-request-id":"WESTUS:20151019T201630Z:356be096-e64e-4425-a25e-0b48692637f3","Expires":"-1","Content-Length":"1108","Azure-AsyncOperation":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/southeastasia/operations/04da8fa4-c967-469f-9da2-becda35e1325?api-version=2015-05-01-preview","x-ms-request-id":"04da8fa4-c967-469f-9da2-becda35e1325","Body":"{\r\n \"name\": \"javatest1vnetnxcvmc\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpvnxb/providers/Microsoft.Network/virtualNetworks/javatest1vnetnxcvmc\",\r\n \"etag\": \"W/\\\"482ec888-977c-425e-b4da-a5bf57c66420\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"4d3e5771-d2a4-4395-8276-513930f50df9\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"javatest1subnnbakeq\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpvnxb/providers/Microsoft.Network/virtualNetworks/javatest1vnetnxcvmc/subnets/javatest1subnnbakeq\",\r\n \"etag\": \"W/\\\"482ec888-977c-425e-b4da-a5bf57c66420\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"},{"x-ms-version":"2015-05-01-preview","User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/southeastasia/operations/04da8fa4-c967-469f-9da2-becda35e1325?api-version=2015-05-01-preview"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14966","StatusCode":"200","x-ms-correlation-request-id":"228a3e93-e65f-4aec-9bee-755b27e0d1db","Date":"Mon, 19 Oct 2015 20:16:30 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T201631Z:228a3e93-e65f-4aec-9bee-755b27e0d1db","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"29","x-ms-request-id":"4dd1bc7d-24d2-429b-93bb-bb1915907ec2","Body":"{\r\n \"status\": \"Succeeded\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpvnxb/providers/Microsoft.Network/virtualnetworks/javatest1vnetnxcvmc?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14981","StatusCode":"200","x-ms-correlation-request-id":"0211f52b-6aa8-4228-8e57-f9d5203d7419","Date":"Mon, 19 Oct 2015 20:16:31 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","ETag":"W/\"2eed9782-5f35-4541-a847-3be17216c56c\"","x-ms-routing-request-id":"WESTUS:20151019T201631Z:0211f52b-6aa8-4228-8e57-f9d5203d7419","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1110","x-ms-request-id":"3dd91fc8-a071-445b-aa93-b5525a3c1da4","Body":"{\r\n \"name\": \"javatest1vnetnxcvmc\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpvnxb/providers/Microsoft.Network/virtualNetworks/javatest1vnetnxcvmc\",\r\n \"etag\": \"W/\\\"2eed9782-5f35-4541-a847-3be17216c56c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4d3e5771-d2a4-4395-8276-513930f50df9\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"javatest1subnnbakeq\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpvnxb/providers/Microsoft.Network/virtualNetworks/javatest1vnetnxcvmc/subnets/javatest1subnnbakeq\",\r\n \"etag\": \"W/\\\"2eed9782-5f35-4541-a847-3be17216c56c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpvnxb/providers/Microsoft.Network/networkInterfaces/javatest1nicniiyhh?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-ratelimit-remaining-subscription-writes":"1193","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"0ed982af-33c3-4ee5-936a-2304ca5c1622","Date":"Mon, 19 Oct 2015 20:16:36 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T201636Z:0ed982af-33c3-4ee5-936a-2304ca5c1622","Expires":"-1","Content-Length":"1361","Azure-AsyncOperation":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/southeastasia/operations/3b9c637c-2ca5-4ccc-ba59-6ebee9d59494?api-version=2015-05-01-preview","x-ms-request-id":"3b9c637c-2ca5-4ccc-ba59-6ebee9d59494","Body":"{\r\n \"name\": \"javatest1nicniiyhh\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpvnxb/providers/Microsoft.Network/networkInterfaces/javatest1nicniiyhh\",\r\n \"etag\": \"W/\\\"2e4a37e1-3d13-48d4-88dc-16dd85bf9dcf\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fde38140-8bff-451e-8b6e-0b9e1688be3d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"javatest1ipcncsrin\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpvnxb/providers/Microsoft.Network/networkInterfaces/javatest1nicniiyhh/ipConfigurations/javatest1ipcncsrin\",\r\n \"etag\": \"W/\\\"2e4a37e1-3d13-48d4-88dc-16dd85bf9dcf\\\"\",\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/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpvnxb/providers/Microsoft.Network/virtualNetworks/javatest1vnetnxcvmc/subnets/javatest1subnnbakeq\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"},{"x-ms-version":"2015-05-01-preview","User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/southeastasia/operations/3b9c637c-2ca5-4ccc-ba59-6ebee9d59494?api-version=2015-05-01-preview"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14987","StatusCode":"200","x-ms-correlation-request-id":"beb243dc-cc00-4ea9-aa23-1cde78a8bae3","Date":"Mon, 19 Oct 2015 20:16:37 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T201637Z:beb243dc-cc00-4ea9-aa23-1cde78a8bae3","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"29","x-ms-request-id":"9a1c728d-1707-417c-ae9e-d38da7cc8b43","Body":"{\r\n \"status\": \"Succeeded\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpvnxb/providers/Microsoft.Network/networkInterfaces/javatest1nicniiyhh?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14980","StatusCode":"200","x-ms-correlation-request-id":"cb1548c4-62eb-4d36-b43a-cf60f5e19c52","Date":"Mon, 19 Oct 2015 20:16:37 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","ETag":"W/\"2e4a37e1-3d13-48d4-88dc-16dd85bf9dcf\"","x-ms-routing-request-id":"WESTUS:20151019T201637Z:cb1548c4-62eb-4d36-b43a-cf60f5e19c52","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1361","x-ms-request-id":"8f9ccc02-a4e2-49f2-baf5-d951893d4b0f","Body":"{\r\n \"name\": \"javatest1nicniiyhh\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpvnxb/providers/Microsoft.Network/networkInterfaces/javatest1nicniiyhh\",\r\n \"etag\": \"W/\\\"2e4a37e1-3d13-48d4-88dc-16dd85bf9dcf\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fde38140-8bff-451e-8b6e-0b9e1688be3d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"javatest1ipcncsrin\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpvnxb/providers/Microsoft.Network/networkInterfaces/javatest1nicniiyhh/ipConfigurations/javatest1ipcncsrin\",\r\n \"etag\": \"W/\\\"2e4a37e1-3d13-48d4-88dc-16dd85bf9dcf\\\"\",\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/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpvnxb/providers/Microsoft.Network/virtualNetworks/javatest1vnetnxcvmc/subnets/javatest1subnnbakeq\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpvnxb/providers/Microsoft.Compute/availabilitySets/javatest1asniksfn?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","x-ms-ratelimit-remaining-subscription-writes":"1190","Pragma":"no-cache","StatusCode":"200","x-ms-correlation-request-id":"3779731f-4d50-49f7-b100-e01e3c83dfa8","Date":"Mon, 19 Oct 2015 20:16:40 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T201640Z:3779731f-4d50-49f7-b100-e01e3c83dfa8","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"387","x-ms-request-id":"b486ee13-1265-484e-b7a7-a887db83b073","Body":"{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpvnxb/providers/Microsoft.Compute/availabilitySets/javatest1asniksfn\",\r\n \"name\": \"javatest1asniksfn\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpvnxb/providers/Microsoft.Compute/virtualMachines/javatestVMfgqyd?api-version=2015-06-15","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","x-ms-ratelimit-remaining-subscription-writes":"1189","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"f7b2e565-220d-4c1d-83f0-c0c02eddf2fc","Date":"Mon, 19 Oct 2015 20:16:42 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T201643Z:f7b2e565-220d-4c1d-83f0-c0c02eddf2fc","Expires":"-1","Content-Length":"2976","Azure-AsyncOperation":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/e7629359-44da-4791-9a75-1a7cb5f0c738?api-version=2015-06-15","x-ms-request-id":"e7629359-44da-4791-9a75-1a7cb5f0c738","Body":"{\r\n \"properties\": {\r\n \"vmId\": \"11536ea7-5b40-478e-91e6-43ec9ae96443\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpvnxb/providers/Microsoft.Compute/availabilitySets/JAVATEST1ASNIKSFN\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201506\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1sanicatv.blob.core.windows.net/javatest1connfvuez/ososvhd.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javatestVMfgqyd\",\r\n \"adminUsername\": \"Foo12\",\r\n \"customData\": \"ZWNobyAnSGVsbG8gV29ybGQn\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": false,\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"winRM\": {\r\n \"listeners\": [\r\n {\r\n \"protocol\": \"Http\"\r\n },\r\n {\r\n \"protocol\": \"Https\",\r\n \"certificateUrl\": \"https://javakeyvault.vault.azure.net:443/secrets/javapassword/86b7a82d026544e8aae9dc84bb91027a\"\r\n }\r\n ]\r\n },\r\n \"additionalUnattendContent\": [\r\n {\r\n \"passName\": \"oobeSystem\",\r\n \"componentName\": \"Microsoft-Windows-Shell-Setup\",\r\n \"settingName\": \"AutoLogon\",\r\n \"content\": \"<AutoLogon><Enabled>true</Enabled><LogonCount>5</LogonCount><Username>Foo12</Username><Password><Value>BaR@123rgababaab</Value><PlainText>true</PlainText></Password></AutoLogon>\"\r\n }\r\n ]\r\n },\r\n \"secrets\": [\r\n {\r\n \"sourceVault\": {\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javakeyvaultrg/providers/Microsoft.KeyVault/vaults/javakeyvault\"\r\n },\r\n \"vaultCertificates\": [\r\n {\r\n \"certificateUrl\": \"https://javakeyvault.vault.azure.net:443/secrets/javapassword/86b7a82d026544e8aae9dc84bb91027a\",\r\n \"certificateStore\": \"My\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"properties\":{},\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpvnxb/providers/Microsoft.Network/networkInterfaces/javatest1nicniiyhh\"}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpvnxb/providers/Microsoft.Compute/virtualMachines/javatestVMfgqyd\",\r\n \"name\": \"javatestVMfgqyd\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/e7629359-44da-4791-9a75-1a7cb5f0c738?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14965","StatusCode":"200","x-ms-correlation-request-id":"216452b9-3e66-4b6c-b61d-28c1304e1b2d","Date":"Mon, 19 Oct 2015 20:16:43 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T201644Z:216452b9-3e66-4b6c-b61d-28c1304e1b2d","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"380","x-ms-request-id":"cb7c21b7-04c9-4de5-8822-7737b96fe763","Body":"{\r\n \"operationId\": \"e7629359-44da-4791-9a75-1a7cb5f0c738\",\r\n \"status\": \"Failed\",\r\n \"startTime\": \"2015-10-19T20:16:41.5385911+00:00\",\r\n \"endTime\": \"2015-10-19T20:16:43.1010911+00:00\",\r\n \"error\": {\r\n \"code\": \"KeyVaultDoesNotExist\",\r\n \"message\": \"Key Vault https://javakeyvault.vault.azure.net/secrets/javapassword/86b7a82d026544e8aae9dc84bb91027a does not exist.\"\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpvnxb/providers/Microsoft.Compute/virtualMachines/javatestVMfgqyd?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14964","StatusCode":"200","x-ms-correlation-request-id":"68ebb8de-5a5f-4809-a36d-58c8ba88c250","Date":"Mon, 19 Oct 2015 20:16:43 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T201644Z:68ebb8de-5a5f-4809-a36d-58c8ba88c250","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"2974","x-ms-request-id":"0694c910-bfcf-4f19-aa5a-1b63fc894e22","Body":"{\r\n \"properties\": {\r\n \"vmId\": \"11536ea7-5b40-478e-91e6-43ec9ae96443\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpvnxb/providers/Microsoft.Compute/availabilitySets/JAVATEST1ASNIKSFN\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201506\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1sanicatv.blob.core.windows.net/javatest1connfvuez/ososvhd.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javatestVMfgqyd\",\r\n \"adminUsername\": \"Foo12\",\r\n \"customData\": \"ZWNobyAnSGVsbG8gV29ybGQn\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": false,\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"winRM\": {\r\n \"listeners\": [\r\n {\r\n \"protocol\": \"Http\"\r\n },\r\n {\r\n \"protocol\": \"Https\",\r\n \"certificateUrl\": \"https://javakeyvault.vault.azure.net:443/secrets/javapassword/86b7a82d026544e8aae9dc84bb91027a\"\r\n }\r\n ]\r\n },\r\n \"additionalUnattendContent\": [\r\n {\r\n \"passName\": \"oobeSystem\",\r\n \"componentName\": \"Microsoft-Windows-Shell-Setup\",\r\n \"settingName\": \"AutoLogon\",\r\n \"content\": \"<AutoLogon><Enabled>true</Enabled><LogonCount>5</LogonCount><Username>Foo12</Username><Password><Value>BaR@123rgababaab</Value><PlainText>true</PlainText></Password></AutoLogon>\"\r\n }\r\n ]\r\n },\r\n \"secrets\": [\r\n {\r\n \"sourceVault\": {\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javakeyvaultrg/providers/Microsoft.KeyVault/vaults/javakeyvault\"\r\n },\r\n \"vaultCertificates\": [\r\n {\r\n \"certificateUrl\": \"https://javakeyvault.vault.azure.net:443/secrets/javapassword/86b7a82d026544e8aae9dc84bb91027a\",\r\n \"certificateStore\": \"My\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"properties\":{},\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpvnxb/providers/Microsoft.Network/networkInterfaces/javatest1nicniiyhh\"}]},\r\n \"provisioningState\": \"Failed\"\r\n },\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpvnxb/providers/Microsoft.Compute/virtualMachines/javatestVMfgqyd\",\r\n \"name\": \"javatestVMfgqyd\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpvnxb/providers/Microsoft.Compute/virtualMachines/javatestVMfgqyd?$expand=instanceView&api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14963","StatusCode":"200","x-ms-correlation-request-id":"cd5c07da-48c8-4729-8516-a815cf679419","Date":"Mon, 19 Oct 2015 20:16:44 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T201644Z:cd5c07da-48c8-4729-8516-a815cf679419","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"3676","x-ms-request-id":"caa2513c-8572-4c3d-ab9d-e4f7fa818a02","Body":"{\r\n \"properties\": {\r\n \"vmId\": \"11536ea7-5b40-478e-91e6-43ec9ae96443\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpvnxb/providers/Microsoft.Compute/availabilitySets/JAVATEST1ASNIKSFN\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201506\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1sanicatv.blob.core.windows.net/javatest1connfvuez/ososvhd.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javatestVMfgqyd\",\r\n \"adminUsername\": \"Foo12\",\r\n \"customData\": \"ZWNobyAnSGVsbG8gV29ybGQn\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": false,\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"winRM\": {\r\n \"listeners\": [\r\n {\r\n \"protocol\": \"Http\"\r\n },\r\n {\r\n \"protocol\": \"Https\",\r\n \"certificateUrl\": \"https://javakeyvault.vault.azure.net:443/secrets/javapassword/86b7a82d026544e8aae9dc84bb91027a\"\r\n }\r\n ]\r\n },\r\n \"additionalUnattendContent\": [\r\n {\r\n \"passName\": \"oobeSystem\",\r\n \"componentName\": \"Microsoft-Windows-Shell-Setup\",\r\n \"settingName\": \"AutoLogon\",\r\n \"content\": \"<AutoLogon><Enabled>true</Enabled><LogonCount>5</LogonCount><Username>Foo12</Username><Password><Value>BaR@123rgababaab</Value><PlainText>true</PlainText></Password></AutoLogon>\"\r\n }\r\n ]\r\n },\r\n \"secrets\": [\r\n {\r\n \"sourceVault\": {\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javakeyvaultrg/providers/Microsoft.KeyVault/vaults/javakeyvault\"\r\n },\r\n \"vaultCertificates\": [\r\n {\r\n \"certificateUrl\": \"https://javakeyvault.vault.azure.net:443/secrets/javapassword/86b7a82d026544e8aae9dc84bb91027a\",\r\n \"certificateStore\": \"My\"\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"properties\":{},\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpvnxb/providers/Microsoft.Network/networkInterfaces/javatest1nicniiyhh\"}]},\r\n \"provisioningState\": \"Failed\",\r\n \"instanceView\": {\r\n \"disks\": [\r\n {\r\n \"name\": \"osdisk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/creating\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Creating\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/failed/KeyVaultDoesNotExist\",\r\n \"level\": \"Error\",\r\n \"displayStatus\": \"Provisioning failed\",\r\n \"message\": \"Key Vault https://javakeyvault.vault.azure.net/secrets/javapassword/86b7a82d026544e8aae9dc84bb91027a does not exist.\",\r\n \"time\": \"2015-10-19T20:16:43.038573+00:00\"\r\n }\r\n ]\r\n }\r\n },\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpvnxb/providers/Microsoft.Compute/virtualMachines/javatestVMfgqyd\",\r\n \"name\": \"javatestVMfgqyd\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"}] \ No newline at end of file diff --git a/resource-management/azure-mgmt-utility/src/test/resources/session-records/testVmExtensionsOperations.json b/resource-management/azure-mgmt-utility/src/test/resources/session-records/testVmExtensionsOperations.json index 1c0920658dc9..ff7c6ca3dc4d 100644 --- a/resource-management/azure-mgmt-utility/src/test/resources/session-records/testVmExtensionsOperations.json +++ b/resource-management/azure-mgmt-utility/src/test/resources/session-records/testVmExtensionsOperations.json @@ -1 +1 @@ -[{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/providers/Microsoft.Compute/locations/SouthEastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?api-version=2015-06-15&$top=1","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14716","StatusCode":"200","x-ms-correlation-request-id":"a27fdc2a-7eaa-4eff-baf9-facc11a4418d","Date":"Fri, 21 Aug 2015 21:36:57 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150821T213657Z:a27fdc2a-7eaa-4eff-baf9-facc11a4418d","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"313","x-ms-request-id":"f1d8b96e-a98f-4792-b9f0-cde3bca7ac2c","Body":"[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201505\",\r\n \"id\": \"/Subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201505\"\r\n }\r\n]","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourcegroups/javatestrgnbrgws?api-version=2014-04-01-preview","Content-Type":"application/json; charset=utf-8"},{"x-ms-ratelimit-remaining-subscription-writes":"1198","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"9ed2e769-33bf-4255-9dcc-1bb6d584acb6","Date":"Fri, 21 Aug 2015 21:36:59 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150821T213659Z:9ed2e769-33bf-4255-9dcc-1bb6d584acb6","Expires":"-1","Content-Length":"192","x-ms-request-id":"9ed2e769-33bf-4255-9dcc-1bb6d584acb6","Body":"{\"id\":\"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnbrgws\",\"name\":\"javatestrgnbrgws\",\"location\":\"southeastasia\",\"properties\":{\"provisioningState\":\"Succeeded\"}}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnbrgws/providers/Microsoft.Storage/storageAccounts/javatest1sanzcqzu?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-ratelimit-remaining-subscription-writes":"1196","Pragma":"no-cache","StatusCode":"202","x-ms-correlation-request-id":"220f3062-8db1-4be7-ab4d-26dc0b21b2b4","Date":"Fri, 21 Aug 2015 21:37:03 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"25","x-ms-routing-request-id":"WESTUS:20150821T213704Z:220f3062-8db1-4be7-ab4d-26dc0b21b2b4","Expires":"-1","Content-Length":"4","x-ms-request-id":"cfebfa39-e0a8-4621-882a-340a11639129","Body":"null","Content-Type":"application/json; charset=utf-8","Location":"https://management.azure.com/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/providers/Microsoft.Storage/operations/cfebfa39-e0a8-4621-882a-340a11639129?monitor=true&api-version=2015-05-01-preview"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/providers/Microsoft.Storage/operations/cfebfa39-e0a8-4621-882a-340a11639129?monitor=true&api-version=2015-05-01-preview"},{"Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14924","StatusCode":"202","x-ms-correlation-request-id":"b4fb0d81-3884-40f6-8ace-c165ddc49c44","Date":"Fri, 21 Aug 2015 21:37:03 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"25","x-ms-routing-request-id":"WESTUS:20150821T213704Z:b4fb0d81-3884-40f6-8ace-c165ddc49c44","Expires":"-1","Content-Length":"4","x-ms-request-id":"2189cb5b-904d-47b3-8917-088fa5dc6994","Body":"null","Content-Type":"application/json; charset=utf-8","Location":"https://management.azure.com/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/providers/Microsoft.Storage/operations/cfebfa39-e0a8-4621-882a-340a11639129?monitor=true&api-version=2015-05-01-preview"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/providers/Microsoft.Storage/operations/cfebfa39-e0a8-4621-882a-340a11639129?monitor=true&api-version=2015-05-01-preview"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14922","StatusCode":"200","x-ms-correlation-request-id":"6ec05552-d686-47d1-94b3-49b1a4d0519a","Date":"Fri, 21 Aug 2015 21:37:29 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150821T213729Z:6ec05552-d686-47d1-94b3-49b1a4d0519a","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"73","x-ms-request-id":"de3afbb5-1dd4-49e8-88b2-79b03c16f71b","Body":"{\"properties\":{\"accountType\":\"Standard_GRS\"},\"location\":\"Southeast Asia\"}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnbrgws/providers/Microsoft.Storage/storageAccounts?api-version=2015-05-01-preview"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14715","StatusCode":"200","x-ms-correlation-request-id":"9186bc68-e537-47ae-b00c-3167d681e881","Date":"Fri, 21 Aug 2015 21:37:30 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150821T213730Z:9186bc68-e537-47ae-b00c-3167d681e881","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"728","x-ms-request-id":"097990b5-f23d-43bd-90ae-0ea08e971274","Body":"{\"value\":[{\"id\":\"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnbrgws/providers/Microsoft.Storage/storageAccounts/javatest1sanzcqzu\",\"name\":\"javatest1sanzcqzu\",\"location\":\"Southeast Asia\",\"type\":\"Microsoft.Storage/storageAccounts\",\"properties\":{\"provisioningState\":\"Succeeded\",\"accountType\":\"Standard_GRS\",\"primaryEndpoints\":{\"blob\":\"https://javatest1sanzcqzu.blob.core.windows.net/\",\"queue\":\"https://javatest1sanzcqzu.queue.core.windows.net/\",\"table\":\"https://javatest1sanzcqzu.table.core.windows.net/\"},\"primaryLocation\":\"Southeast Asia\",\"statusOfPrimary\":\"Available\",\"secondaryLocation\":\"East Asia\",\"statusOfSecondary\":\"Available\",\"creationTime\":\"2015-08-21T21:37:02.5222728Z\"}}],\"nextLink\":\"\"}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnbrgws/providers/Microsoft.Network/virtualnetworks/javatest1vnetnokpdl?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-ratelimit-remaining-subscription-writes":"1197","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"a6938d45-978e-408a-bba7-a58c4a56c06a","Date":"Fri, 21 Aug 2015 21:37:33 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"10","x-ms-routing-request-id":"WESTUS:20150821T213733Z:a6938d45-978e-408a-bba7-a58c4a56c06a","Expires":"-1","Content-Length":"1060","Azure-AsyncOperation":"https://management.azure.com/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/providers/Microsoft.Network/locations/southeastasia/operations/42696287-8584-4c06-a69f-1142991303f5?api-version=2015-05-01-preview","x-ms-request-id":"42696287-8584-4c06-a69f-1142991303f5","Body":"{\r\n \"name\": \"javatest1vnetnokpdl\",\r\n \"id\": \"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnbrgws/providers/Microsoft.Network/virtualNetworks/javatest1vnetnokpdl\",\r\n \"etag\": \"W/\\\"be7cdc9d-d6e1-4dce-86c7-a3e0f43ff6a7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"84dddf20-4b79-4d60-8c55-35765d823912\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"javatest1subnnielbx\",\r\n \"id\": \"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnbrgws/providers/Microsoft.Network/virtualNetworks/javatest1vnetnokpdl/subnets/javatest1subnnielbx\",\r\n \"etag\": \"W/\\\"be7cdc9d-d6e1-4dce-86c7-a3e0f43ff6a7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"x-ms-version":"2015-05-01-preview","User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/providers/Microsoft.Network/locations/southeastasia/operations/42696287-8584-4c06-a69f-1142991303f5?api-version=2015-05-01-preview"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14973","StatusCode":"200","x-ms-correlation-request-id":"8cad3b93-d38c-41a1-af74-daea50b85693","Date":"Fri, 21 Aug 2015 21:37:34 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150821T213734Z:8cad3b93-d38c-41a1-af74-daea50b85693","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"29","x-ms-request-id":"a2f753fd-7f9c-4c70-a140-e12aa5d7ad1b","Body":"{\r\n \"status\": \"Succeeded\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnbrgws/providers/Microsoft.Network/virtualnetworks/javatest1vnetnokpdl?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14714","StatusCode":"200","x-ms-correlation-request-id":"6631446d-2bf1-4287-aeda-999989bd0e70","Date":"Fri, 21 Aug 2015 21:37:35 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","ETag":"W/\"71cce9be-a7bf-45f5-b003-6c60b5ec984c\"","x-ms-routing-request-id":"WESTUS:20150821T213735Z:6631446d-2bf1-4287-aeda-999989bd0e70","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1062","x-ms-request-id":"4b23fbc8-b0c6-4b5f-b1de-6e318d62e653","Body":"{\r\n \"name\": \"javatest1vnetnokpdl\",\r\n \"id\": \"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnbrgws/providers/Microsoft.Network/virtualNetworks/javatest1vnetnokpdl\",\r\n \"etag\": \"W/\\\"71cce9be-a7bf-45f5-b003-6c60b5ec984c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"84dddf20-4b79-4d60-8c55-35765d823912\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"javatest1subnnielbx\",\r\n \"id\": \"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnbrgws/providers/Microsoft.Network/virtualNetworks/javatest1vnetnokpdl/subnets/javatest1subnnielbx\",\r\n \"etag\": \"W/\\\"71cce9be-a7bf-45f5-b003-6c60b5ec984c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnbrgws/providers/Microsoft.Network/networkInterfaces/javatest1nicnlydvw?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-ratelimit-remaining-subscription-writes":"1194","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"b6a4b3a7-a4b9-4a83-b1ca-2d7ed689ff72","Date":"Fri, 21 Aug 2015 21:37:41 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150821T213742Z:b6a4b3a7-a4b9-4a83-b1ca-2d7ed689ff72","Expires":"-1","Content-Length":"1311","Azure-AsyncOperation":"https://management.azure.com/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/providers/Microsoft.Network/locations/southeastasia/operations/f37de944-8f23-4571-b4a7-fe047d10b238?api-version=2015-05-01-preview","x-ms-request-id":"f37de944-8f23-4571-b4a7-fe047d10b238","Body":"{\r\n \"name\": \"javatest1nicnlydvw\",\r\n \"id\": \"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnbrgws/providers/Microsoft.Network/networkInterfaces/javatest1nicnlydvw\",\r\n \"etag\": \"W/\\\"ebc936c8-3e74-4b08-8150-2f3694b4a4cf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"002a2b42-1d8a-4321-af37-47727322c9ff\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"javatest1ipcnmxxsf\",\r\n \"id\": \"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnbrgws/providers/Microsoft.Network/networkInterfaces/javatest1nicnlydvw/ipConfigurations/javatest1ipcnmxxsf\",\r\n \"etag\": \"W/\\\"ebc936c8-3e74-4b08-8150-2f3694b4a4cf\\\"\",\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/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnbrgws/providers/Microsoft.Network/virtualNetworks/javatest1vnetnokpdl/subnets/javatest1subnnielbx\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"x-ms-version":"2015-05-01-preview","User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/providers/Microsoft.Network/locations/southeastasia/operations/f37de944-8f23-4571-b4a7-fe047d10b238?api-version=2015-05-01-preview"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14713","StatusCode":"200","x-ms-correlation-request-id":"58a339f8-6a92-4993-8967-532c6ba480cc","Date":"Fri, 21 Aug 2015 21:37:43 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150821T213743Z:58a339f8-6a92-4993-8967-532c6ba480cc","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"29","x-ms-request-id":"8ef11cb1-9d93-4963-ada0-e8b77e23783b","Body":"{\r\n \"status\": \"Succeeded\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnbrgws/providers/Microsoft.Network/networkInterfaces/javatest1nicnlydvw?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14712","StatusCode":"200","x-ms-correlation-request-id":"736db8cd-ee8a-48e1-bc1a-8c6d62ad45eb","Date":"Fri, 21 Aug 2015 21:37:43 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","ETag":"W/\"ebc936c8-3e74-4b08-8150-2f3694b4a4cf\"","x-ms-routing-request-id":"WESTUS:20150821T213743Z:736db8cd-ee8a-48e1-bc1a-8c6d62ad45eb","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1311","x-ms-request-id":"ae2e00a4-8604-423b-9c51-bfb15ca420f7","Body":"{\r\n \"name\": \"javatest1nicnlydvw\",\r\n \"id\": \"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnbrgws/providers/Microsoft.Network/networkInterfaces/javatest1nicnlydvw\",\r\n \"etag\": \"W/\\\"ebc936c8-3e74-4b08-8150-2f3694b4a4cf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"002a2b42-1d8a-4321-af37-47727322c9ff\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"javatest1ipcnmxxsf\",\r\n \"id\": \"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnbrgws/providers/Microsoft.Network/networkInterfaces/javatest1nicnlydvw/ipConfigurations/javatest1ipcnmxxsf\",\r\n \"etag\": \"W/\\\"ebc936c8-3e74-4b08-8150-2f3694b4a4cf\\\"\",\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/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnbrgws/providers/Microsoft.Network/virtualNetworks/javatest1vnetnokpdl/subnets/javatest1subnnielbx\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnbrgws/providers/Microsoft.Compute/availabilitySets/javatest1asnedkmq?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"782ae8e4-f04b-4968-be1b-7a692c6c70c1_130844981924640801","x-ms-ratelimit-remaining-subscription-writes":"1193","Pragma":"no-cache","StatusCode":"200","x-ms-correlation-request-id":"5dc57951-de64-4f78-acca-23f921147f4c","Date":"Fri, 21 Aug 2015 21:37:46 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150821T213747Z:5dc57951-de64-4f78-acca-23f921147f4c","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"387","x-ms-request-id":"88178cdb-0018-4cad-bba0-8db77550589e","Body":"{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnbrgws/providers/Microsoft.Compute/availabilitySets/javatest1asnedkmq\",\r\n \"name\": \"javatest1asnedkmq\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnbrgws/providers/Microsoft.Compute/virtualMachines/javatestvmeridp?api-version=2015-06-15","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"782ae8e4-f04b-4968-be1b-7a692c6c70c1_130844981924640801","x-ms-ratelimit-remaining-subscription-writes":"1192","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"f2f83f98-c803-4d44-a156-5f4f070047ec","Date":"Fri, 21 Aug 2015 21:37:49 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150821T213750Z:f2f83f98-c803-4d44-a156-5f4f070047ec","Expires":"-1","Content-Length":"1598","Azure-AsyncOperation":"https://management.azure.com/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/providers/Microsoft.Compute/locations/southeastasia/operations/0aaafdb1-47ed-4811-b585-602c483cd964?api-version=2015-06-15","x-ms-request-id":"0aaafdb1-47ed-4811-b585-602c483cd964","Body":"{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnbrgws/providers/Microsoft.Compute/availabilitySets/JAVATEST1ASNEDKMQ\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1sanzcqzu.blob.core.windows.net/javatest1conngbtrc/ososvhd.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javatestvmeridp\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"properties\":{},\"id\":\"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnbrgws/providers/Microsoft.Network/networkInterfaces/javatest1nicnlydvw\"}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnbrgws/providers/Microsoft.Compute/virtualMachines/javatestvmeridp\",\r\n \"name\": \"javatestvmeridp\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/providers/Microsoft.Compute/locations/southeastasia/operations/0aaafdb1-47ed-4811-b585-602c483cd964?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"782ae8e4-f04b-4968-be1b-7a692c6c70c1_130844981924640801","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14711","StatusCode":"200","x-ms-correlation-request-id":"094339d4-3051-4763-af6e-64a65c1ad0e7","Date":"Fri, 21 Aug 2015 21:37:50 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150821T213751Z:094339d4-3051-4763-af6e-64a65c1ad0e7","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"141","x-ms-request-id":"4112dd18-d53e-41a4-b760-112a86f09715","Body":"{\r\n \"operationId\": \"0aaafdb1-47ed-4811-b585-602c483cd964\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-08-21T21:37:48.7792199+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnbrgws/providers/Microsoft.Compute/virtualMachines/javatestvmeridp?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"782ae8e4-f04b-4968-be1b-7a692c6c70c1_130844981924640801","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14710","StatusCode":"200","x-ms-correlation-request-id":"2c9806f4-cc01-40c1-9841-fb3a6917770a","Date":"Fri, 21 Aug 2015 21:37:50 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150821T213751Z:2c9806f4-cc01-40c1-9841-fb3a6917770a","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1598","x-ms-request-id":"e5283466-fb5d-4fd0-bb9c-cc681fd389a7","Body":"{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnbrgws/providers/Microsoft.Compute/availabilitySets/JAVATEST1ASNEDKMQ\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1sanzcqzu.blob.core.windows.net/javatest1conngbtrc/ososvhd.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javatestvmeridp\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"properties\":{},\"id\":\"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnbrgws/providers/Microsoft.Network/networkInterfaces/javatest1nicnlydvw\"}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnbrgws/providers/Microsoft.Compute/virtualMachines/javatestvmeridp\",\r\n \"name\": \"javatestvmeridp\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnbrgws/providers/Microsoft.Compute/virtualMachines/javatestvmeridp/extensions/javatestext1?api-version=2015-06-15","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"782ae8e4-f04b-4968-be1b-7a692c6c70c1_130844981924640801","x-ms-ratelimit-remaining-subscription-writes":"1191","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"1f494165-3798-435c-afb7-ddacb37c51d3","Date":"Fri, 21 Aug 2015 21:37:54 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150821T213755Z:1f494165-3798-435c-afb7-ddacb37c51d3","Expires":"-1","Content-Length":"684","Azure-AsyncOperation":"https://management.azure.com/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/providers/Microsoft.Compute/locations/southeastasia/operations/8ba1d0cd-a7bd-4b4d-be03-5de841b76a67?api-version=2015-06-15","x-ms-request-id":"8ba1d0cd-a7bd-4b4d-be03-5de841b76a67","Body":"{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.3\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[],\"commandToExecute\":\"powershell -ExecutionPolicy Unrestricted pwd\"},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnbrgws/providers/Microsoft.Compute/virtualMachines/javatestvmeridp/extensions/javatestext1\",\r\n \"name\": \"javatestext1\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"extensionTag1\": \"1\",\r\n \"extensionTag2\": \"2\"\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnbrgws/providers/Microsoft.Compute/virtualMachines/javatestvmeridp/extensions/javatestext1?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"782ae8e4-f04b-4968-be1b-7a692c6c70c1_130844981924640801","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14708","StatusCode":"200","x-ms-correlation-request-id":"fc9bb4b5-922f-4846-85cf-8f068b0daa73","Date":"Fri, 21 Aug 2015 21:39:56 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150821T213956Z:fc9bb4b5-922f-4846-85cf-8f068b0daa73","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"684","x-ms-request-id":"9d0356d8-eb36-4758-bf4d-8b2c680e8317","Body":"{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.3\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[],\"commandToExecute\":\"powershell -ExecutionPolicy Unrestricted pwd\"},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnbrgws/providers/Microsoft.Compute/virtualMachines/javatestvmeridp/extensions/javatestext1\",\r\n \"name\": \"javatestext1\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"extensionTag1\": \"1\",\r\n \"extensionTag2\": \"2\"\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnbrgws/providers/Microsoft.Compute/virtualMachines/javatestvmeridp/extensions/javatestext1?$expand=instanceView&api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"782ae8e4-f04b-4968-be1b-7a692c6c70c1_130844981924640801","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14707","StatusCode":"200","x-ms-correlation-request-id":"262f77f2-555d-49b2-9a9e-5345111b5667","Date":"Fri, 21 Aug 2015 21:39:56 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150821T213956Z:262f77f2-555d-49b2-9a9e-5345111b5667","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"745","x-ms-request-id":"fe7e363f-d341-49a4-895d-bfcb397ba48c","Body":"{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.3\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[],\"commandToExecute\":\"powershell -ExecutionPolicy Unrestricted pwd\"},\r\n \"provisioningState\": \"Creating\",\r\n \"instanceView\": {\r\n \"name\": \"javatestext1\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnbrgws/providers/Microsoft.Compute/virtualMachines/javatestvmeridp/extensions/javatestext1\",\r\n \"name\": \"javatestext1\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"extensionTag1\": \"1\",\r\n \"extensionTag2\": \"2\"\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnbrgws/providers/Microsoft.Compute/virtualMachines/javatestvmeridp?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"782ae8e4-f04b-4968-be1b-7a692c6c70c1_130844981924640801","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14706","StatusCode":"200","x-ms-correlation-request-id":"0993e492-7684-4046-8bac-52dc833ca23f","Date":"Fri, 21 Aug 2015 21:39:57 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150821T213957Z:0993e492-7684-4046-8bac-52dc833ca23f","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"2380","x-ms-request-id":"b64fa65b-54e4-45e2-8333-8c5b3be96fec","Body":"{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnbrgws/providers/Microsoft.Compute/availabilitySets/JAVATEST1ASNEDKMQ\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1sanzcqzu.blob.core.windows.net/javatest1conngbtrc/ososvhd.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javatestvmeridp\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"properties\":{},\"id\":\"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnbrgws/providers/Microsoft.Network/networkInterfaces/javatest1nicnlydvw\"}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.3\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[],\"commandToExecute\":\"powershell -ExecutionPolicy Unrestricted pwd\"},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnbrgws/providers/Microsoft.Compute/virtualMachines/javatestvmeridp/extensions/javatestext1\",\r\n \"name\": \"javatestext1\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"extensionTag1\": \"1\",\r\n \"extensionTag2\": \"2\"\r\n }\r\n }\r\n ],\r\n \"id\": \"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnbrgws/providers/Microsoft.Compute/virtualMachines/javatestvmeridp\",\r\n \"name\": \"javatestvmeridp\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnbrgws/providers/Microsoft.Compute/virtualMachines/javatestvmeridp?$expand=instanceView&api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"782ae8e4-f04b-4968-be1b-7a692c6c70c1_130844981924640801","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14705","StatusCode":"200","x-ms-correlation-request-id":"6a13454b-3364-4d5a-ab34-378def71b921","Date":"Fri, 21 Aug 2015 21:39:57 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150821T213957Z:6a13454b-3364-4d5a-ab34-378def71b921","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"3599","x-ms-request-id":"22600e97-d1d8-439e-a657-55546cc781b4","Body":"{\r\n \"properties\": {\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnbrgws/providers/Microsoft.Compute/availabilitySets/JAVATEST1ASNEDKMQ\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201505\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1sanzcqzu.blob.core.windows.net/javatest1conngbtrc/ososvhd.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javatestvmeridp\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"properties\":{},\"id\":\"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnbrgws/providers/Microsoft.Network/networkInterfaces/javatest1nicnlydvw\"}]},\r\n \"provisioningState\": \"Creating\",\r\n \"instanceView\": {\r\n \"platformUpdateDomain\": 0,\r\n \"platformFaultDomain\": 0,\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"Unknown\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n \"level\": \"Warning\",\r\n \"displayStatus\": \"Not Ready\",\r\n \"message\": \"VM status blob is found but not yet populated.\",\r\n \"time\": \"2015-08-21T21:39:57+00:00\"\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"osdisk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2015-08-21T21:38:03.4824312+00:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"extensions\": [\r\n {\r\n \"name\": \"javatestext1\"\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/creating\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Creating\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.3\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[],\"commandToExecute\":\"powershell -ExecutionPolicy Unrestricted pwd\"},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnbrgws/providers/Microsoft.Compute/virtualMachines/javatestvmeridp/extensions/javatestext1\",\r\n \"name\": \"javatestext1\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"extensionTag1\": \"1\",\r\n \"extensionTag2\": \"2\"\r\n }\r\n }\r\n ],\r\n \"id\": \"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnbrgws/providers/Microsoft.Compute/virtualMachines/javatestvmeridp\",\r\n \"name\": \"javatestvmeridp\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"DELETE","Uri":"/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/resourceGroups/javatestrgnbrgws/providers/Microsoft.Compute/virtualMachines/javatestvmeridp/extensions/javatestext1?api-version=2015-06-15","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"782ae8e4-f04b-4968-be1b-7a692c6c70c1_130844981924640801","x-ms-ratelimit-remaining-subscription-writes":"1190","Pragma":"no-cache","StatusCode":"202","x-ms-correlation-request-id":"f6a7c710-7d36-4959-bc02-20ce2c5eb4c4","Date":"Fri, 21 Aug 2015 21:40:01 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150821T214001Z:f6a7c710-7d36-4959-bc02-20ce2c5eb4c4","Expires":"-1","Content-Length":"0","Azure-AsyncOperation":"https://management.azure.com/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/providers/Microsoft.Compute/locations/southeastasia/operations/2ec78854-3aa3-4774-946d-03b310932ad0?api-version=2015-06-15","x-ms-request-id":"2ec78854-3aa3-4774-946d-03b310932ad0","Body":"","Location":"https://management.azure.com/subscriptions/006e0ed2-19a6-4951-8d8d-3d8640d3916b/providers/Microsoft.Compute/locations/southeastasia/operations/2ec78854-3aa3-4774-946d-03b310932ad0?monitor=true&api-version=2015-06-15"}] \ No newline at end of file +[{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/SouthEastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?api-version=2015-06-15&$top=1","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14994","StatusCode":"200","x-ms-correlation-request-id":"09013290-ae53-4b31-b68f-e512e932750c","Date":"Mon, 19 Oct 2015 19:58:04 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T195804Z:09013290-ae53-4b31-b68f-e512e932750c","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"313","x-ms-request-id":"76576f65-fd53-494f-b220-e5af94e0b977","Body":"[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.201506\",\r\n \"id\": \"/Subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.201506\"\r\n }\r\n]","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/javatestrgnynleb?api-version=2014-04-01-preview","Content-Type":"application/json; charset=utf-8"},{"x-ms-ratelimit-remaining-subscription-writes":"1197","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"c3c6f98b-783c-48b6-b855-609311ad8de8","Date":"Mon, 19 Oct 2015 19:58:04 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T195805Z:c3c6f98b-783c-48b6-b855-609311ad8de8","Expires":"-1","Content-Length":"192","x-ms-request-id":"c3c6f98b-783c-48b6-b855-609311ad8de8","Body":"{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnynleb\",\"name\":\"javatestrgnynleb\",\"location\":\"southeastasia\",\"properties\":{\"provisioningState\":\"Succeeded\"}}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnynleb/providers/Microsoft.Storage/storageAccounts/javatest1sankdwie?api-version=2015-06-15","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-ratelimit-remaining-subscription-writes":"1192","Pragma":"no-cache","StatusCode":"202","x-ms-correlation-request-id":"3511c3e2-33f5-491f-8f75-eac30a0cb15c","Date":"Mon, 19 Oct 2015 19:58:06 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"25","x-ms-routing-request-id":"WESTUS:20151019T195807Z:3511c3e2-33f5-491f-8f75-eac30a0cb15c","Expires":"-1","Content-Length":"0","x-ms-request-id":"3511c3e2-33f5-491f-8f75-eac30a0cb15c","Body":"","Location":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/operations/856f5158-96fc-4147-9a3a-faaf14e3916e?monitor=true&api-version=2015-06-15"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/operations/856f5158-96fc-4147-9a3a-faaf14e3916e?monitor=true&api-version=2015-06-15"},{"Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14930","StatusCode":"202","x-ms-correlation-request-id":"05b4fe25-aabf-4111-9964-a76672a57ebd","Date":"Mon, 19 Oct 2015 19:58:07 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"25","x-ms-routing-request-id":"WESTUS:20151019T195807Z:05b4fe25-aabf-4111-9964-a76672a57ebd","Expires":"-1","Content-Length":"0","x-ms-request-id":"05b4fe25-aabf-4111-9964-a76672a57ebd","Body":"","Location":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/operations/856f5158-96fc-4147-9a3a-faaf14e3916e?monitor=true&api-version=2015-06-15"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/operations/856f5158-96fc-4147-9a3a-faaf14e3916e?monitor=true&api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14929","StatusCode":"200","x-ms-correlation-request-id":"5142af77-5786-4558-90bb-f7f6e60ceeec","Date":"Mon, 19 Oct 2015 19:58:32 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T195833Z:5142af77-5786-4558-90bb-f7f6e60ceeec","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"72","x-ms-request-id":"5142af77-5786-4558-90bb-f7f6e60ceeec","Body":"{\"location\":\"SouthEastAsia\",\"properties\":{\"accountType\":\"Standard_LRS\"}}","Content-Type":"application/json"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnynleb/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14928","StatusCode":"200","x-ms-correlation-request-id":"29946543-ecf7-4457-9821-139a9ad6b582","Date":"Mon, 19 Oct 2015 19:58:33 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T195833Z:29946543-ecf7-4457-9821-139a9ad6b582","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"717","x-ms-request-id":"29946543-ecf7-4457-9821-139a9ad6b582","Body":"{\"value\":[{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnynleb/providers/Microsoft.Storage/storageAccounts/javatest1sankdwie\",\"location\":\"southeastasia\",\"name\":\"javatest1sankdwie\",\"properties\":{\"accountType\":\"Standard_LRS\",\"creationTime\":\"2015-10-19T19:58:07.1836106Z\",\"primaryEndpoints\":{\"blob\":\"https://javatest1sankdwie.blob.core.windows.net/\",\"file\":\"https://javatest1sankdwie.file.core.windows.net/\",\"queue\":\"https://javatest1sankdwie.queue.core.windows.net/\",\"table\":\"https://javatest1sankdwie.table.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}]}\n","Content-Type":"application/json"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnynleb/providers/Microsoft.Network/virtualnetworks/javatest1vnetnyfvgw?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-ratelimit-remaining-subscription-writes":"1193","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"7e07eaef-d998-4e12-8236-3c5c1a315519","Date":"Mon, 19 Oct 2015 19:58:37 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","Retry-After":"10","x-ms-routing-request-id":"WESTUS:20151019T195838Z:7e07eaef-d998-4e12-8236-3c5c1a315519","Expires":"-1","Content-Length":"1108","Azure-AsyncOperation":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/southeastasia/operations/5bdf4d88-567e-4e8d-b0bd-5519903f2b07?api-version=2015-05-01-preview","x-ms-request-id":"5bdf4d88-567e-4e8d-b0bd-5519903f2b07","Body":"{\r\n \"name\": \"javatest1vnetnyfvgw\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnynleb/providers/Microsoft.Network/virtualNetworks/javatest1vnetnyfvgw\",\r\n \"etag\": \"W/\\\"41b9270b-cd16-4ea6-862a-1caf6fc8c695\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"e84fd2c5-4ff0-47b0-b6c1-9200d6b4bea5\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"javatest1subnnwsozr\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnynleb/providers/Microsoft.Network/virtualNetworks/javatest1vnetnyfvgw/subnets/javatest1subnnwsozr\",\r\n \"etag\": \"W/\\\"41b9270b-cd16-4ea6-862a-1caf6fc8c695\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"},{"x-ms-version":"2015-05-01-preview","User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/southeastasia/operations/5bdf4d88-567e-4e8d-b0bd-5519903f2b07?api-version=2015-05-01-preview"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14993","StatusCode":"200","x-ms-correlation-request-id":"555cfba4-2d01-4110-bec8-2a2e430360fa","Date":"Mon, 19 Oct 2015 19:58:38 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T195839Z:555cfba4-2d01-4110-bec8-2a2e430360fa","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"29","x-ms-request-id":"2926d464-f73b-47ac-909a-bcf37e897fa5","Body":"{\r\n \"status\": \"Succeeded\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnynleb/providers/Microsoft.Network/virtualnetworks/javatest1vnetnyfvgw?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14986","StatusCode":"200","x-ms-correlation-request-id":"2f612a54-2aaf-4233-89f2-a656fa5e0163","Date":"Mon, 19 Oct 2015 19:58:39 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","ETag":"W/\"b85f2337-cd13-4a8b-a2ea-bf7a570d9dc1\"","x-ms-routing-request-id":"WESTUS:20151019T195839Z:2f612a54-2aaf-4233-89f2-a656fa5e0163","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1110","x-ms-request-id":"a8df0d7c-5ffa-4c73-8c9d-a81dcac8f29a","Body":"{\r\n \"name\": \"javatest1vnetnyfvgw\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnynleb/providers/Microsoft.Network/virtualNetworks/javatest1vnetnyfvgw\",\r\n \"etag\": \"W/\\\"b85f2337-cd13-4a8b-a2ea-bf7a570d9dc1\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e84fd2c5-4ff0-47b0-b6c1-9200d6b4bea5\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"javatest1subnnwsozr\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnynleb/providers/Microsoft.Network/virtualNetworks/javatest1vnetnyfvgw/subnets/javatest1subnnwsozr\",\r\n \"etag\": \"W/\\\"b85f2337-cd13-4a8b-a2ea-bf7a570d9dc1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnynleb/providers/Microsoft.Network/networkInterfaces/javatest1nicnmppab?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-ratelimit-remaining-subscription-writes":"1194","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"8348bfa9-ba73-4a90-9595-03676eceae75","Date":"Mon, 19 Oct 2015 19:58:42 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T195842Z:8348bfa9-ba73-4a90-9595-03676eceae75","Expires":"-1","Content-Length":"1361","Azure-AsyncOperation":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/southeastasia/operations/4a337504-d19c-4426-8484-e28eb19a099a?api-version=2015-05-01-preview","x-ms-request-id":"4a337504-d19c-4426-8484-e28eb19a099a","Body":"{\r\n \"name\": \"javatest1nicnmppab\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnynleb/providers/Microsoft.Network/networkInterfaces/javatest1nicnmppab\",\r\n \"etag\": \"W/\\\"73045da3-5a54-4e28-9d25-447191109c16\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"720d3b9a-e398-4540-8368-5647f36fdfea\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"javatest1ipcnauvoh\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnynleb/providers/Microsoft.Network/networkInterfaces/javatest1nicnmppab/ipConfigurations/javatest1ipcnauvoh\",\r\n \"etag\": \"W/\\\"73045da3-5a54-4e28-9d25-447191109c16\\\"\",\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/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnynleb/providers/Microsoft.Network/virtualNetworks/javatest1vnetnyfvgw/subnets/javatest1subnnwsozr\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"},{"x-ms-version":"2015-05-01-preview","User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/southeastasia/operations/4a337504-d19c-4426-8484-e28eb19a099a?api-version=2015-05-01-preview"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14997","StatusCode":"200","x-ms-correlation-request-id":"e768d68f-b185-4b1f-9ea0-85a4302323a1","Date":"Mon, 19 Oct 2015 19:58:43 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T195843Z:e768d68f-b185-4b1f-9ea0-85a4302323a1","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"29","x-ms-request-id":"bbb5a496-5cdf-4381-95a1-6aa088a885d3","Body":"{\r\n \"status\": \"Succeeded\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnynleb/providers/Microsoft.Network/networkInterfaces/javatest1nicnmppab?api-version=2015-05-01-preview","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14985","StatusCode":"200","x-ms-correlation-request-id":"96fe8679-9e6c-45c2-a59a-26978efb6a40","Date":"Mon, 19 Oct 2015 19:58:42 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","ETag":"W/\"73045da3-5a54-4e28-9d25-447191109c16\"","x-ms-routing-request-id":"WESTUS:20151019T195843Z:96fe8679-9e6c-45c2-a59a-26978efb6a40","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1361","x-ms-request-id":"8460c2b0-4a54-4022-8e72-7e2723e07e30","Body":"{\r\n \"name\": \"javatest1nicnmppab\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnynleb/providers/Microsoft.Network/networkInterfaces/javatest1nicnmppab\",\r\n \"etag\": \"W/\\\"73045da3-5a54-4e28-9d25-447191109c16\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"720d3b9a-e398-4540-8368-5647f36fdfea\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"javatest1ipcnauvoh\",\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnynleb/providers/Microsoft.Network/networkInterfaces/javatest1nicnmppab/ipConfigurations/javatest1ipcnauvoh\",\r\n \"etag\": \"W/\\\"73045da3-5a54-4e28-9d25-447191109c16\\\"\",\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/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnynleb/providers/Microsoft.Network/virtualNetworks/javatest1vnetnyfvgw/subnets/javatest1subnnwsozr\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"enableIPForwarding\": false\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnynleb/providers/Microsoft.Compute/availabilitySets/javatest1asnyyvef?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","x-ms-ratelimit-remaining-subscription-writes":"1192","Pragma":"no-cache","StatusCode":"200","x-ms-correlation-request-id":"f5109c88-0ef4-4cca-9d29-8fa1f3568ae6","Date":"Mon, 19 Oct 2015 19:58:46 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T195846Z:f5109c88-0ef4-4cca-9d29-8fa1f3568ae6","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"387","x-ms-request-id":"2a4d53bb-6ff9-4656-86ae-5875ed75e8a8","Body":"{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnynleb/providers/Microsoft.Compute/availabilitySets/javatest1asnyyvef\",\r\n \"name\": \"javatest1asnyyvef\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnynleb/providers/Microsoft.Compute/virtualMachines/javatestvmqmrqf?api-version=2015-06-15","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","x-ms-ratelimit-remaining-subscription-writes":"1191","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"c845b11b-f15a-4064-b6dc-7fe0781ff271","Date":"Mon, 19 Oct 2015 19:58:49 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T195849Z:c845b11b-f15a-4064-b6dc-7fe0781ff271","Expires":"-1","Content-Length":"1651","Azure-AsyncOperation":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/7af3cbdb-afab-45be-b144-cdafde4b8bca?api-version=2015-06-15","x-ms-request-id":"7af3cbdb-afab-45be-b144-cdafde4b8bca","Body":"{\r\n \"properties\": {\r\n \"vmId\": \"e72082e1-080e-452e-b8c2-ca55260f7f8e\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnynleb/providers/Microsoft.Compute/availabilitySets/JAVATEST1ASNYYVEF\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201506\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1sankdwie.blob.core.windows.net/javatest1connpfgha/ososvhd.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javatestvmqmrqf\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"properties\":{},\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnynleb/providers/Microsoft.Network/networkInterfaces/javatest1nicnmppab\"}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnynleb/providers/Microsoft.Compute/virtualMachines/javatestvmqmrqf\",\r\n \"name\": \"javatestvmqmrqf\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/7af3cbdb-afab-45be-b144-cdafde4b8bca?api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14992","StatusCode":"200","x-ms-correlation-request-id":"4a123deb-790b-4783-acb4-41b4e21b3638","Date":"Mon, 19 Oct 2015 19:58:50 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T195850Z:4a123deb-790b-4783-acb4-41b4e21b3638","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"139","x-ms-request-id":"8abb76c7-3500-44de-bab0-90b31b363dcb","Body":"{\r\n \"operationId\": \"7af3cbdb-afab-45be-b144-cdafde4b8bca\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2015-10-19T19:58:47.99164+00:00\"\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnynleb/providers/Microsoft.Compute/virtualMachines/javatestvmqmrqf?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14991","StatusCode":"200","x-ms-correlation-request-id":"391bc2a9-11f2-4c77-b6a3-c15fb86fd3d7","Date":"Mon, 19 Oct 2015 19:58:50 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T195850Z:391bc2a9-11f2-4c77-b6a3-c15fb86fd3d7","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"1651","x-ms-request-id":"cb29f7c8-ef7c-4d06-ac32-2605b65d8a06","Body":"{\r\n \"properties\": {\r\n \"vmId\": \"e72082e1-080e-452e-b8c2-ca55260f7f8e\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnynleb/providers/Microsoft.Compute/availabilitySets/JAVATEST1ASNYYVEF\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201506\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1sankdwie.blob.core.windows.net/javatest1connpfgha/ososvhd.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javatestvmqmrqf\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"properties\":{},\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnynleb/providers/Microsoft.Network/networkInterfaces/javatest1nicnmppab\"}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnynleb/providers/Microsoft.Compute/virtualMachines/javatestvmqmrqf\",\r\n \"name\": \"javatestvmqmrqf\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnynleb/providers/Microsoft.Compute/virtualMachines/javatestvmqmrqf/extensions/javatestext1?api-version=2015-06-15","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","x-ms-ratelimit-remaining-subscription-writes":"1190","Pragma":"no-cache","StatusCode":"201","x-ms-correlation-request-id":"e256f543-be8b-4a52-86e8-64e51388fb0c","Date":"Mon, 19 Oct 2015 19:58:54 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T195854Z:e256f543-be8b-4a52-86e8-64e51388fb0c","Expires":"-1","Content-Length":"684","Azure-AsyncOperation":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/c34d2d43-54fc-4ff2-8a2e-4af024242280?api-version=2015-06-15","x-ms-request-id":"c34d2d43-54fc-4ff2-8a2e-4af024242280","Body":"{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.3\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[],\"commandToExecute\":\"powershell -ExecutionPolicy Unrestricted pwd\"},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnynleb/providers/Microsoft.Compute/virtualMachines/javatestvmqmrqf/extensions/javatestext1\",\r\n \"name\": \"javatestext1\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"extensionTag1\": \"1\",\r\n \"extensionTag2\": \"2\"\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnynleb/providers/Microsoft.Compute/virtualMachines/javatestvmqmrqf/extensions/javatestext1?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14998","StatusCode":"200","x-ms-correlation-request-id":"85f75dcf-2174-4a2b-87ba-93dd877d953c","Date":"Mon, 19 Oct 2015 20:00:55 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200055Z:85f75dcf-2174-4a2b-87ba-93dd877d953c","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"684","x-ms-request-id":"fdf44d18-b860-4c7e-a975-f87ba870f27b","Body":"{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.3\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[],\"commandToExecute\":\"powershell -ExecutionPolicy Unrestricted pwd\"},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnynleb/providers/Microsoft.Compute/virtualMachines/javatestvmqmrqf/extensions/javatestext1\",\r\n \"name\": \"javatestext1\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"extensionTag1\": \"1\",\r\n \"extensionTag2\": \"2\"\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnynleb/providers/Microsoft.Compute/virtualMachines/javatestvmqmrqf/extensions/javatestext1?$expand=instanceView&api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14997","StatusCode":"200","x-ms-correlation-request-id":"bc1af71c-e1a9-43e9-8b46-e7994a97a04e","Date":"Mon, 19 Oct 2015 20:00:55 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200056Z:bc1af71c-e1a9-43e9-8b46-e7994a97a04e","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"745","x-ms-request-id":"3ebdda73-31fc-4b5a-b24e-2ce328d72929","Body":"{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.3\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[],\"commandToExecute\":\"powershell -ExecutionPolicy Unrestricted pwd\"},\r\n \"provisioningState\": \"Creating\",\r\n \"instanceView\": {\r\n \"name\": \"javatestext1\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnynleb/providers/Microsoft.Compute/virtualMachines/javatestvmqmrqf/extensions/javatestext1\",\r\n \"name\": \"javatestext1\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"extensionTag1\": \"1\",\r\n \"extensionTag2\": \"2\"\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnynleb/providers/Microsoft.Compute/virtualMachines/javatestvmqmrqf?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14996","StatusCode":"200","x-ms-correlation-request-id":"2cbc4837-da46-44ff-93e9-fdd1cc8e5e90","Date":"Mon, 19 Oct 2015 20:00:56 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200056Z:2cbc4837-da46-44ff-93e9-fdd1cc8e5e90","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"2433","x-ms-request-id":"1df611a8-3e95-4346-bb36-48a4d3b9f0fb","Body":"{\r\n \"properties\": {\r\n \"vmId\": \"e72082e1-080e-452e-b8c2-ca55260f7f8e\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnynleb/providers/Microsoft.Compute/availabilitySets/JAVATEST1ASNYYVEF\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201506\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1sankdwie.blob.core.windows.net/javatest1connpfgha/ososvhd.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javatestvmqmrqf\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"properties\":{},\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnynleb/providers/Microsoft.Network/networkInterfaces/javatest1nicnmppab\"}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.3\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[],\"commandToExecute\":\"powershell -ExecutionPolicy Unrestricted pwd\"},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnynleb/providers/Microsoft.Compute/virtualMachines/javatestvmqmrqf/extensions/javatestext1\",\r\n \"name\": \"javatestext1\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"extensionTag1\": \"1\",\r\n \"extensionTag2\": \"2\"\r\n }\r\n }\r\n ],\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnynleb/providers/Microsoft.Compute/virtualMachines/javatestvmqmrqf\",\r\n \"name\": \"javatestvmqmrqf\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnynleb/providers/Microsoft.Compute/virtualMachines/javatestvmqmrqf?$expand=instanceView&api-version=2015-06-15"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14995","StatusCode":"200","x-ms-correlation-request-id":"a50aea17-8d0b-40e1-9c5e-738758de4b7b","Date":"Mon, 19 Oct 2015 20:00:56 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200056Z:a50aea17-8d0b-40e1-9c5e-738758de4b7b","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"3652","x-ms-request-id":"6d0db468-27ed-47fe-93b4-b7680db12c7c","Body":"{\r\n \"properties\": {\r\n \"vmId\": \"e72082e1-080e-452e-b8c2-ca55260f7f8e\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnynleb/providers/Microsoft.Compute/availabilitySets/JAVATEST1ASNYYVEF\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.201506\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://javatest1sankdwie.blob.core.windows.net/javatest1connpfgha/ososvhd.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javatestvmqmrqf\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"properties\":{},\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnynleb/providers/Microsoft.Network/networkInterfaces/javatest1nicnmppab\"}]},\r\n \"provisioningState\": \"Creating\",\r\n \"instanceView\": {\r\n \"platformUpdateDomain\": 0,\r\n \"platformFaultDomain\": 0,\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"Unknown\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n \"level\": \"Warning\",\r\n \"displayStatus\": \"Not Ready\",\r\n \"message\": \"VM status blob is found but not yet populated.\",\r\n \"time\": \"2015-10-19T20:00:56+00:00\"\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"osdisk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2015-10-19T19:58:59.5073743+00:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"extensions\": [\r\n {\r\n \"name\": \"javatestext1\"\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/creating\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Creating\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.3\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[],\"commandToExecute\":\"powershell -ExecutionPolicy Unrestricted pwd\"},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnynleb/providers/Microsoft.Compute/virtualMachines/javatestvmqmrqf/extensions/javatestext1\",\r\n \"name\": \"javatestext1\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"extensionTag1\": \"1\",\r\n \"extensionTag2\": \"2\"\r\n }\r\n }\r\n ],\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnynleb/providers/Microsoft.Compute/virtualMachines/javatestvmqmrqf\",\r\n \"name\": \"javatestvmqmrqf\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"DELETE","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnynleb/providers/Microsoft.Compute/virtualMachines/javatestvmqmrqf/extensions/javatestext1?api-version=2015-06-15","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","x-ms-ratelimit-remaining-subscription-writes":"1195","Pragma":"no-cache","StatusCode":"202","x-ms-correlation-request-id":"fc75bc2a-254b-4094-804f-5d59253efa7f","Date":"Mon, 19 Oct 2015 20:00:57 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T200058Z:fc75bc2a-254b-4094-804f-5d59253efa7f","Expires":"-1","Content-Length":"0","Azure-AsyncOperation":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/e1bc2f1f-dae1-44cf-8796-ff16c9fc0a96?api-version=2015-06-15","x-ms-request-id":"e1bc2f1f-dae1-44cf-8796-ff16c9fc0a96","Body":"","Location":"https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute/locations/southeastasia/operations/e1bc2f1f-dae1-44cf-8796-ff16c9fc0a96?monitor=true&api-version=2015-06-15"}] \ No newline at end of file diff --git a/resource-management/azure-mgmt-utility/src/test/resources/session-records/verifyDefaultFDUDValuesSucceed.json b/resource-management/azure-mgmt-utility/src/test/resources/session-records/verifyDefaultFDUDValuesSucceed.json index ed85bdc9d8fb..47fef2cd7211 100644 --- a/resource-management/azure-mgmt-utility/src/test/resources/session-records/verifyDefaultFDUDValuesSucceed.json +++ b/resource-management/azure-mgmt-utility/src/test/resources/session-records/verifyDefaultFDUDValuesSucceed.json @@ -1 +1 @@ -[{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/javatestrgnpoysk?api-version=2014-04-01-preview","Content-Type":"application/json; charset=utf-8"},{"Transfer-Encoding":"chunked","x-ms-ratelimit-remaining-subscription-writes":"1198","Pragma":"no-cache","StatusCode":"200","x-ms-correlation-request-id":"10479303-1e00-4264-a22f-11beee382f73","Date":"Fri, 14 Aug 2015 22:31:41 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T223142Z:10479303-1e00-4264-a22f-11beee382f73","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"192","x-ms-request-id":"10479303-1e00-4264-a22f-11beee382f73","Body":"{\"id\":\"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnpoysk\",\"name\":\"javatestrgnpoysk\",\"location\":\"southeastasia\",\"properties\":{\"provisioningState\":\"Succeeded\"}}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnpoysk/providers/Microsoft.Compute/availabilitySets/javatestdefaultUDFDmloeq?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130834748847794074","x-ms-ratelimit-remaining-subscription-writes":"1199","Pragma":"no-cache","StatusCode":"200","x-ms-correlation-request-id":"0bdeb503-2413-4b15-9343-3fba25bfba22","Date":"Fri, 14 Aug 2015 22:31:47 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T223147Z:0bdeb503-2413-4b15-9343-3fba25bfba22","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"442","x-ms-request-id":"e8ecf0da-4984-4508-89de-5df459925120","Body":"{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnpoysk/providers/Microsoft.Compute/availabilitySets/javatestdefaultUDFDmloeq\",\r\n \"name\": \"javatestdefaultUDFDmloeq\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnpoysk/providers/Microsoft.Compute/availabilitySets?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130834748847794074","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14977","StatusCode":"200","x-ms-correlation-request-id":"aeae6fc9-7028-41de-a79f-5306072be511","Date":"Fri, 14 Aug 2015 22:31:47 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T223147Z:aeae6fc9-7028-41de-a79f-5306072be511","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"555","x-ms-request-id":"05427efb-4eac-4e9f-bdca-45a290856ba5","Body":"{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3,\r\n \"virtualMachines\": []\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnpoysk/providers/Microsoft.Compute/availabilitySets/javatestdefaultUDFDmloeq\",\r\n \"name\": \"javatestdefaultUDFDmloeq\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n }\r\n ]\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnpoysk/providers/Microsoft.Compute/availabilitySets/javatestdefaultUDFDmloeq?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130834748847794074","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14976","StatusCode":"200","x-ms-correlation-request-id":"f56743b9-c752-469a-8b01-84627cf1a160","Date":"Fri, 14 Aug 2015 22:31:47 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T223148Z:f56743b9-c752-469a-8b01-84627cf1a160","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"470","x-ms-request-id":"a9dc1f73-d659-4dad-b6cb-1502a8a17246","Body":"{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3,\r\n \"virtualMachines\": []\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnpoysk/providers/Microsoft.Compute/availabilitySets/javatestdefaultUDFDmloeq\",\r\n \"name\": \"javatestdefaultUDFDmloeq\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnpoysk/providers/Microsoft.Compute/availabilitySets/javatestdefaultUDFDmloeq/vmSizes?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130834748847794074","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14975","StatusCode":"200","x-ms-correlation-request-id":"07fbe4cf-8a8c-4021-95b2-31af80a66896","Date":"Fri, 14 Aug 2015 22:31:47 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T223148Z:07fbe4cf-8a8c-4021-95b2-31af80a66896","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"5867","x-ms-request-id":"fe1da0d4-7df9-47e5-b7cd-013dda0a3769","Body":"{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_DS1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 7168,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_DS2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28762,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28762,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57244,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n }\r\n ]\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"DELETE","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnpoysk/providers/Microsoft.Compute/availabilitySets/javatestdefaultUDFDmloeq?api-version=2015-06-15","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130834748847794074","x-ms-ratelimit-remaining-subscription-writes":"1198","Pragma":"no-cache","StatusCode":"200","x-ms-correlation-request-id":"bd867658-e861-4c7c-8370-5c7e8c00b2da","Date":"Fri, 14 Aug 2015 22:31:50 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T223150Z:bd867658-e861-4c7c-8370-5c7e8c00b2da","Expires":"-1","Content-Length":"0","x-ms-request-id":"98921b0b-0414-4a0c-9aef-28417ea9ea4a","Body":""}] \ No newline at end of file +[{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/javatestrgnpjvbe?api-version=2014-04-01-preview","Content-Type":"application/json; charset=utf-8"},{"Transfer-Encoding":"chunked","x-ms-ratelimit-remaining-subscription-writes":"1199","Pragma":"no-cache","StatusCode":"200","x-ms-correlation-request-id":"17930631-b421-4c69-8f48-ec00a9d99eb6","Date":"Mon, 19 Oct 2015 19:55:46 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T195547Z:17930631-b421-4c69-8f48-ec00a9d99eb6","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"192","x-ms-request-id":"17930631-b421-4c69-8f48-ec00a9d99eb6","Body":"{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpjvbe\",\"name\":\"javatestrgnpjvbe\",\"location\":\"southeastasia\",\"properties\":{\"provisioningState\":\"Succeeded\"}}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpjvbe/providers/Microsoft.Compute/availabilitySets/javatestdefaultUDFDzgvnp?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","x-ms-ratelimit-remaining-subscription-writes":"1197","Pragma":"no-cache","StatusCode":"200","x-ms-correlation-request-id":"5bd4a5c9-f872-4661-bedb-37c4de010203","Date":"Mon, 19 Oct 2015 19:55:50 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T195551Z:5bd4a5c9-f872-4661-bedb-37c4de010203","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"442","x-ms-request-id":"bd23ba8a-e964-4532-8760-b438eb08e230","Body":"{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpjvbe/providers/Microsoft.Compute/availabilitySets/javatestdefaultUDFDzgvnp\",\r\n \"name\": \"javatestdefaultUDFDzgvnp\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpjvbe/providers/Microsoft.Compute/availabilitySets?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14941","StatusCode":"200","x-ms-correlation-request-id":"8fa4a32c-97f7-4039-940d-fc870f4d4394","Date":"Mon, 19 Oct 2015 19:55:50 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T195551Z:8fa4a32c-97f7-4039-940d-fc870f4d4394","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"555","x-ms-request-id":"a12bc9c7-777f-43b7-a7f4-7de3419561ae","Body":"{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3,\r\n \"virtualMachines\": []\r\n },\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpjvbe/providers/Microsoft.Compute/availabilitySets/javatestdefaultUDFDzgvnp\",\r\n \"name\": \"javatestdefaultUDFDzgvnp\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n }\r\n ]\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpjvbe/providers/Microsoft.Compute/availabilitySets/javatestdefaultUDFDzgvnp?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14940","StatusCode":"200","x-ms-correlation-request-id":"3ef248d8-2a37-462f-8236-7d92cf679b78","Date":"Mon, 19 Oct 2015 19:55:51 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T195552Z:3ef248d8-2a37-462f-8236-7d92cf679b78","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"470","x-ms-request-id":"908ee50e-7734-4adf-8c90-83d0f25c39e3","Body":"{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3,\r\n \"virtualMachines\": []\r\n },\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpjvbe/providers/Microsoft.Compute/availabilitySets/javatestdefaultUDFDzgvnp\",\r\n \"name\": \"javatestdefaultUDFDzgvnp\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpjvbe/providers/Microsoft.Compute/availabilitySets/javatestdefaultUDFDzgvnp/vmSizes?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14939","StatusCode":"200","x-ms-correlation-request-id":"7796bee9-d4d5-4166-946c-8a935e61401a","Date":"Mon, 19 Oct 2015 19:55:51 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T195552Z:7796bee9-d4d5-4166-946c-8a935e61401a","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"5867","x-ms-request-id":"71a0c9bc-2348-4bb3-b7b1-536d765109b4","Body":"{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_DS1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 7168,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_DS2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28762,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28762,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57244,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n }\r\n ]\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"DELETE","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpjvbe/providers/Microsoft.Compute/availabilitySets/javatestdefaultUDFDzgvnp?api-version=2015-06-15","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","x-ms-ratelimit-remaining-subscription-writes":"1196","Pragma":"no-cache","StatusCode":"200","x-ms-correlation-request-id":"a70aa6ae-ed7d-4a38-a4ba-b09ba9e0dfa7","Date":"Mon, 19 Oct 2015 19:55:53 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T195554Z:a70aa6ae-ed7d-4a38-a4ba-b09ba9e0dfa7","Expires":"-1","Content-Length":"0","x-ms-request-id":"1a1e7676-b2c1-40f0-98c0-9177303fe4b6","Body":""}] \ No newline at end of file diff --git a/resource-management/azure-mgmt-utility/src/test/resources/session-records/verifyInvalidFDFail.json b/resource-management/azure-mgmt-utility/src/test/resources/session-records/verifyInvalidFDFail.json index 8d2e085adf4a..dd480e6bbb65 100644 --- a/resource-management/azure-mgmt-utility/src/test/resources/session-records/verifyInvalidFDFail.json +++ b/resource-management/azure-mgmt-utility/src/test/resources/session-records/verifyInvalidFDFail.json @@ -1 +1 @@ -[{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/javatestrgnpoysk?api-version=2014-04-01-preview","Content-Type":"application/json; charset=utf-8"},{"Transfer-Encoding":"chunked","x-ms-ratelimit-remaining-subscription-writes":"1199","Pragma":"no-cache","StatusCode":"200","x-ms-correlation-request-id":"efe82f88-ccaa-4f24-ab73-713bc6cced30","Date":"Fri, 14 Aug 2015 22:31:27 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T223127Z:efe82f88-ccaa-4f24-ab73-713bc6cced30","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"192","x-ms-request-id":"efe82f88-ccaa-4f24-ab73-713bc6cced30","Body":"{\"id\":\"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnpoysk\",\"name\":\"javatestrgnpoysk\",\"location\":\"southeastasia\",\"properties\":{\"provisioningState\":\"Succeeded\"}}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnpoysk/providers/Microsoft.Compute/availabilitySets/javatestfdTooHighdicoy?api-version=2015-06-15","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130834748847794074","x-ms-ratelimit-remaining-subscription-writes":"1199","Pragma":"no-cache","StatusCode":"400","x-ms-correlation-request-id":"2a9bd5be-2046-4739-a658-1ba7dc05affd","Date":"Fri, 14 Aug 2015 22:31:31 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T223131Z:2a9bd5be-2046-4739-a658-1ba7dc05affd","Expires":"-1","Content-Length":"183","x-ms-request-id":"792d6814-0a69-4bf0-9fda-1f3e804df90f","Body":"{\r\n \"error\": {\r\n \"code\": \"InvalidParameter\",\r\n \"target\": \"platformFaultDomainCount\",\r\n \"message\": \"The specified fault domain count 4 must fall in the range 2 to 3.\"\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnpoysk/providers/Microsoft.Compute/availabilitySets/javatestfdTooLowddfpu?api-version=2015-06-15","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130834748847794074","x-ms-ratelimit-remaining-subscription-writes":"1198","Pragma":"no-cache","StatusCode":"400","x-ms-correlation-request-id":"149ae80d-e505-463b-b9ba-f58a18d168a3","Date":"Fri, 14 Aug 2015 22:31:33 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T223133Z:149ae80d-e505-463b-b9ba-f58a18d168a3","Expires":"-1","Content-Length":"184","x-ms-request-id":"d604faa1-e913-40b5-82bd-d05f0a974890","Body":"{\r\n \"error\": {\r\n \"code\": \"InvalidParameter\",\r\n \"target\": \"platformFaultDomainCount\",\r\n \"message\": \"The specified fault domain count -1 must fall in the range 2 to 3.\"\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"}] \ No newline at end of file +[{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/javatestrgnpjvbe?api-version=2014-04-01-preview","Content-Type":"application/json; charset=utf-8"},{"Transfer-Encoding":"chunked","x-ms-ratelimit-remaining-subscription-writes":"1199","Pragma":"no-cache","StatusCode":"200","x-ms-correlation-request-id":"23c847ec-4b65-4941-9718-a0387bf95a81","Date":"Mon, 19 Oct 2015 19:55:31 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T195531Z:23c847ec-4b65-4941-9718-a0387bf95a81","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"192","x-ms-request-id":"23c847ec-4b65-4941-9718-a0387bf95a81","Body":"{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpjvbe\",\"name\":\"javatestrgnpjvbe\",\"location\":\"southeastasia\",\"properties\":{\"provisioningState\":\"Succeeded\"}}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpjvbe/providers/Microsoft.Compute/availabilitySets/javatestfdTooHighqdbpz?api-version=2015-06-15","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","x-ms-ratelimit-remaining-subscription-writes":"1198","Pragma":"no-cache","StatusCode":"400","x-ms-correlation-request-id":"4cdb6fab-40f4-436d-bcd7-f505d4efb1ea","Date":"Mon, 19 Oct 2015 19:55:34 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T195534Z:4cdb6fab-40f4-436d-bcd7-f505d4efb1ea","Expires":"-1","Content-Length":"183","x-ms-request-id":"e105f3b4-c24e-4d34-be03-26ed651691f9","Body":"{\r\n \"error\": {\r\n \"code\": \"InvalidParameter\",\r\n \"target\": \"platformFaultDomainCount\",\r\n \"message\": \"The specified fault domain count 4 must fall in the range 2 to 3.\"\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpjvbe/providers/Microsoft.Compute/availabilitySets/javatestfdTooLowseeiq?api-version=2015-06-15","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","x-ms-ratelimit-remaining-subscription-writes":"1197","Pragma":"no-cache","StatusCode":"400","x-ms-correlation-request-id":"5fac536d-1875-4817-ae21-9096a1d55a2a","Date":"Mon, 19 Oct 2015 19:55:36 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T195537Z:5fac536d-1875-4817-ae21-9096a1d55a2a","Expires":"-1","Content-Length":"184","x-ms-request-id":"e83d98f7-27b0-4e9d-8492-13d0579ea47e","Body":"{\r\n \"error\": {\r\n \"code\": \"InvalidParameter\",\r\n \"target\": \"platformFaultDomainCount\",\r\n \"message\": \"The specified fault domain count -1 must fall in the range 2 to 3.\"\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"}] \ No newline at end of file diff --git a/resource-management/azure-mgmt-utility/src/test/resources/session-records/verifyInvalidUDFail.json b/resource-management/azure-mgmt-utility/src/test/resources/session-records/verifyInvalidUDFail.json index 92730500bd23..0d5ae1dc541f 100644 --- a/resource-management/azure-mgmt-utility/src/test/resources/session-records/verifyInvalidUDFail.json +++ b/resource-management/azure-mgmt-utility/src/test/resources/session-records/verifyInvalidUDFail.json @@ -1 +1 @@ -[{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/javatestrgnpoysk?api-version=2014-04-01-preview","Content-Type":"application/json; charset=utf-8"},{"Transfer-Encoding":"chunked","x-ms-ratelimit-remaining-subscription-writes":"1197","Pragma":"no-cache","StatusCode":"200","x-ms-correlation-request-id":"7e3c405a-2c03-4cbb-b2f1-dcb97b8e5b7b","Date":"Fri, 14 Aug 2015 22:31:34 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T223135Z:7e3c405a-2c03-4cbb-b2f1-dcb97b8e5b7b","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"192","x-ms-request-id":"7e3c405a-2c03-4cbb-b2f1-dcb97b8e5b7b","Body":"{\"id\":\"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnpoysk\",\"name\":\"javatestrgnpoysk\",\"location\":\"southeastasia\",\"properties\":{\"provisioningState\":\"Succeeded\"}}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnpoysk/providers/Microsoft.Compute/availabilitySets/javatestudTooHighyhnuc?api-version=2015-06-15","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130834748847794074","x-ms-ratelimit-remaining-subscription-writes":"1199","Pragma":"no-cache","StatusCode":"400","x-ms-correlation-request-id":"56a86029-9919-4740-8a04-573bfee9f240","Date":"Fri, 14 Aug 2015 22:31:38 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T223139Z:56a86029-9919-4740-8a04-573bfee9f240","Expires":"-1","Content-Length":"187","x-ms-request-id":"2054da75-623b-4893-9483-a23c80731a7f","Body":"{\r\n \"error\": {\r\n \"code\": \"InvalidParameter\",\r\n \"target\": \"platformUpdateDomainCount\",\r\n \"message\": \"The specified update domain count 21 must fall in the range 1 to 20.\"\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnpoysk/providers/Microsoft.Compute/availabilitySets/javatestudTooLowxzwiv?api-version=2015-06-15","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130834748847794074","x-ms-ratelimit-remaining-subscription-writes":"1198","Pragma":"no-cache","StatusCode":"400","x-ms-correlation-request-id":"917e1181-afc2-4954-8a58-bb76086308d0","Date":"Fri, 14 Aug 2015 22:31:40 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T223141Z:917e1181-afc2-4954-8a58-bb76086308d0","Expires":"-1","Content-Length":"186","x-ms-request-id":"13dacf3c-c9f2-46c3-9357-a19fa2dfa343","Body":"{\r\n \"error\": {\r\n \"code\": \"InvalidParameter\",\r\n \"target\": \"platformUpdateDomainCount\",\r\n \"message\": \"The specified update domain count 0 must fall in the range 1 to 20.\"\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"}] \ No newline at end of file +[{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/javatestrgnpjvbe?api-version=2014-04-01-preview","Content-Type":"application/json; charset=utf-8"},{"Transfer-Encoding":"chunked","x-ms-ratelimit-remaining-subscription-writes":"1198","Pragma":"no-cache","StatusCode":"200","x-ms-correlation-request-id":"9997c209-e2b5-41e3-863a-543d2cda0135","Date":"Mon, 19 Oct 2015 19:55:37 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T195538Z:9997c209-e2b5-41e3-863a-543d2cda0135","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"192","x-ms-request-id":"9997c209-e2b5-41e3-863a-543d2cda0135","Body":"{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpjvbe\",\"name\":\"javatestrgnpjvbe\",\"location\":\"southeastasia\",\"properties\":{\"provisioningState\":\"Succeeded\"}}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpjvbe/providers/Microsoft.Compute/availabilitySets/javatestudTooHightyhcp?api-version=2015-06-15","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","x-ms-ratelimit-remaining-subscription-writes":"1199","Pragma":"no-cache","StatusCode":"400","x-ms-correlation-request-id":"4741ca51-e109-491f-953a-697fb13b35cd","Date":"Mon, 19 Oct 2015 19:55:42 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T195542Z:4741ca51-e109-491f-953a-697fb13b35cd","Expires":"-1","Content-Length":"187","x-ms-request-id":"ffa76ad9-5f4f-4af2-8543-9fe1fef3f10b","Body":"{\r\n \"error\": {\r\n \"code\": \"InvalidParameter\",\r\n \"target\": \"platformUpdateDomainCount\",\r\n \"message\": \"The specified update domain count 21 must fall in the range 1 to 20.\"\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpjvbe/providers/Microsoft.Compute/availabilitySets/javatestudTooLowubtdf?api-version=2015-06-15","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","x-ms-ratelimit-remaining-subscription-writes":"1198","Pragma":"no-cache","StatusCode":"400","x-ms-correlation-request-id":"014d5c5b-9843-4834-bad1-35bdf7c4d795","Date":"Mon, 19 Oct 2015 19:55:44 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T195544Z:014d5c5b-9843-4834-bad1-35bdf7c4d795","Expires":"-1","Content-Length":"186","x-ms-request-id":"7ca63b03-c198-42b3-9891-73a4736e9749","Body":"{\r\n \"error\": {\r\n \"code\": \"InvalidParameter\",\r\n \"target\": \"platformUpdateDomainCount\",\r\n \"message\": \"The specified update domain count 0 must fall in the range 1 to 20.\"\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"}] \ No newline at end of file diff --git a/resource-management/azure-mgmt-utility/src/test/resources/session-records/verifyNonDefaultFDUDValuesSucceed.json b/resource-management/azure-mgmt-utility/src/test/resources/session-records/verifyNonDefaultFDUDValuesSucceed.json index a4a4729ec552..11bcdc072b8d 100644 --- a/resource-management/azure-mgmt-utility/src/test/resources/session-records/verifyNonDefaultFDUDValuesSucceed.json +++ b/resource-management/azure-mgmt-utility/src/test/resources/session-records/verifyNonDefaultFDUDValuesSucceed.json @@ -1 +1 @@ -[{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/javatestrgnpoysk?api-version=2014-04-01-preview","Content-Type":"application/json; charset=utf-8"},{"Transfer-Encoding":"chunked","x-ms-ratelimit-remaining-subscription-writes":"1197","Pragma":"no-cache","StatusCode":"200","x-ms-correlation-request-id":"3d5a8f7e-925f-49a5-9ae4-d53cfec7972d","Date":"Fri, 14 Aug 2015 22:31:51 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T223151Z:3d5a8f7e-925f-49a5-9ae4-d53cfec7972d","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"192","x-ms-request-id":"3d5a8f7e-925f-49a5-9ae4-d53cfec7972d","Body":"{\"id\":\"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnpoysk\",\"name\":\"javatestrgnpoysk\",\"location\":\"southeastasia\",\"properties\":{\"provisioningState\":\"Succeeded\"}}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnpoysk/providers/Microsoft.Compute/availabilitySets/javatestnondefaultUDFDvpkmw?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130834748847794074","x-ms-ratelimit-remaining-subscription-writes":"1199","Pragma":"no-cache","StatusCode":"200","x-ms-correlation-request-id":"f7a8ad4a-4a94-46c8-ad8d-18af50451e26","Date":"Fri, 14 Aug 2015 22:31:56 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T223156Z:f7a8ad4a-4a94-46c8-ad8d-18af50451e26","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"448","x-ms-request-id":"694162d2-7716-43e2-b092-294bec39354c","Body":"{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 4,\r\n \"platformFaultDomainCount\": 2\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnpoysk/providers/Microsoft.Compute/availabilitySets/javatestnondefaultUDFDvpkmw\",\r\n \"name\": \"javatestnondefaultUDFDvpkmw\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnpoysk/providers/Microsoft.Compute/availabilitySets?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130834748847794074","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14999","StatusCode":"200","x-ms-correlation-request-id":"28b97b15-e8ce-4950-9356-61b04b3cbb46","Date":"Fri, 14 Aug 2015 22:31:56 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T223157Z:28b97b15-e8ce-4950-9356-61b04b3cbb46","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"561","x-ms-request-id":"309b4cd8-c3fe-4821-8f3e-aa01aa09f660","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/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnpoysk/providers/Microsoft.Compute/availabilitySets/javatestnondefaultUDFDvpkmw\",\r\n \"name\": \"javatestnondefaultUDFDvpkmw\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n }\r\n ]\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnpoysk/providers/Microsoft.Compute/availabilitySets/javatestnondefaultUDFDvpkmw?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130834748847794074","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14998","StatusCode":"200","x-ms-correlation-request-id":"a10632a9-0cfe-45a1-8f7c-384273b535d3","Date":"Fri, 14 Aug 2015 22:31:57 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T223157Z:a10632a9-0cfe-45a1-8f7c-384273b535d3","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"476","x-ms-request-id":"0c1590c4-f0bd-43e0-b42a-0cfa1774338e","Body":"{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 4,\r\n \"platformFaultDomainCount\": 2,\r\n \"virtualMachines\": []\r\n },\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnpoysk/providers/Microsoft.Compute/availabilitySets/javatestnondefaultUDFDvpkmw\",\r\n \"name\": \"javatestnondefaultUDFDvpkmw\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnpoysk/providers/Microsoft.Compute/availabilitySets/javatestnondefaultUDFDvpkmw/vmSizes?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130834748847794074","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14997","StatusCode":"200","x-ms-correlation-request-id":"c8e6e0ef-bad5-4407-b1ce-b573ef7ca64f","Date":"Fri, 14 Aug 2015 22:31:57 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T223157Z:c8e6e0ef-bad5-4407-b1ce-b573ef7ca64f","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"5867","x-ms-request-id":"ffccb7fc-e230-4fcc-90d2-c567660d0bb2","Body":"{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_DS1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 7168,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_DS2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28762,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28762,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57244,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n }\r\n ]\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"DELETE","Uri":"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/javatestrgnpoysk/providers/Microsoft.Compute/availabilitySets/javatestnondefaultUDFDvpkmw?api-version=2015-06-15","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_130834748847794074","x-ms-ratelimit-remaining-subscription-writes":"1198","Pragma":"no-cache","StatusCode":"200","x-ms-correlation-request-id":"1c98b7fe-ea61-43ef-8923-016984c76ea4","Date":"Fri, 14 Aug 2015 22:31:59 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20150814T223200Z:1c98b7fe-ea61-43ef-8923-016984c76ea4","Expires":"-1","Content-Length":"0","x-ms-request-id":"e7e520db-c4eb-4e4e-9694-48cbdc946469","Body":""}] \ No newline at end of file +[{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/javatestrgnpjvbe?api-version=2014-04-01-preview","Content-Type":"application/json; charset=utf-8"},{"Transfer-Encoding":"chunked","x-ms-ratelimit-remaining-subscription-writes":"1198","Pragma":"no-cache","StatusCode":"200","x-ms-correlation-request-id":"30090fbb-bb8e-4687-ba52-8fe78dedeb2a","Date":"Mon, 19 Oct 2015 19:55:55 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T195555Z:30090fbb-bb8e-4687-ba52-8fe78dedeb2a","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"192","x-ms-request-id":"30090fbb-bb8e-4687-ba52-8fe78dedeb2a","Body":"{\"id\":\"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpjvbe\",\"name\":\"javatestrgnpjvbe\",\"location\":\"southeastasia\",\"properties\":{\"provisioningState\":\"Succeeded\"}}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"PUT","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpjvbe/providers/Microsoft.Compute/availabilitySets/javatestnondefaultUDFDzioio?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","x-ms-ratelimit-remaining-subscription-writes":"1195","Pragma":"no-cache","StatusCode":"200","x-ms-correlation-request-id":"5bfaeab8-dc70-44f1-9f88-a9082c1a33cb","Date":"Mon, 19 Oct 2015 19:55:59 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T195559Z:5bfaeab8-dc70-44f1-9f88-a9082c1a33cb","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"448","x-ms-request-id":"4d053cc5-5661-4200-9d31-9f1a98e02e4f","Body":"{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 4,\r\n \"platformFaultDomainCount\": 2\r\n },\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpjvbe/providers/Microsoft.Compute/availabilitySets/javatestnondefaultUDFDzioio\",\r\n \"name\": \"javatestnondefaultUDFDzioio\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpjvbe/providers/Microsoft.Compute/availabilitySets?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14938","StatusCode":"200","x-ms-correlation-request-id":"d8a2ca29-0c9f-427e-b146-198a20cdcc1a","Date":"Mon, 19 Oct 2015 19:55:59 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T195559Z:d8a2ca29-0c9f-427e-b146-198a20cdcc1a","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"561","x-ms-request-id":"fb3a559d-b1e7-45db-8be5-210554eddfa4","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/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpjvbe/providers/Microsoft.Compute/availabilitySets/javatestnondefaultUDFDzioio\",\r\n \"name\": \"javatestnondefaultUDFDzioio\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n }\r\n ]\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpjvbe/providers/Microsoft.Compute/availabilitySets/javatestnondefaultUDFDzioio?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14937","StatusCode":"200","x-ms-correlation-request-id":"83756948-d7e0-4d91-ad48-ea73dbb389f0","Date":"Mon, 19 Oct 2015 19:55:59 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T195559Z:83756948-d7e0-4d91-ad48-ea73dbb389f0","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"476","x-ms-request-id":"4ab44c84-85e7-45ac-8bbc-892a59e9e58b","Body":"{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 4,\r\n \"platformFaultDomainCount\": 2,\r\n \"virtualMachines\": []\r\n },\r\n \"id\": \"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpjvbe/providers/Microsoft.Compute/availabilitySets/javatestnondefaultUDFDzioio\",\r\n \"name\": \"javatestnondefaultUDFDzioio\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"GET","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpjvbe/providers/Microsoft.Compute/availabilitySets/javatestnondefaultUDFDzioio/vmSizes?api-version=2015-06-15","Content-Type":"application/json"},{"Transfer-Encoding":"chunked","Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","Pragma":"no-cache","x-ms-ratelimit-remaining-subscription-reads":"14936","StatusCode":"200","x-ms-correlation-request-id":"51c5539a-3a92-4d83-afd0-704686928d33","Date":"Mon, 19 Oct 2015 19:55:59 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T195559Z:51c5539a-3a92-4d83-afd0-704686928d33","Vary":"Accept-Encoding","Expires":"-1","Content-Length":"5867","x-ms-request-id":"1873ed90-3968-4fe2-a8c4-35647ff78ad1","Body":"{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_DS1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 7168,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_DS2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28762,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28762,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57244,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n }\r\n ]\r\n}","Content-Type":"application/json; charset=utf-8"},{"User-Agent":"Azure-SDK-For-Java","Method":"DELETE","Uri":"/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/javatestrgnpjvbe/providers/Microsoft.Compute/availabilitySets/javatestnondefaultUDFDzioio?api-version=2015-06-15","Content-Type":"application/json"},{"Server":"Microsoft-HTTPAPI/2.0","x-ms-served-by":"595f38b3-9573-4d14-885f-58de47aae4aa_130852694820696591","x-ms-ratelimit-remaining-subscription-writes":"1194","Pragma":"no-cache","StatusCode":"200","x-ms-correlation-request-id":"0b6ee781-c280-41ef-8b1b-c1f291f84612","Date":"Mon, 19 Oct 2015 19:56:02 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains","Cache-Control":"no-cache","x-ms-routing-request-id":"WESTUS:20151019T195602Z:0b6ee781-c280-41ef-8b1b-c1f291f84612","Expires":"-1","Content-Length":"0","x-ms-request-id":"a9701f88-8d28-44d9-99a6-b5d55b3a6fa6","Body":""}] \ No newline at end of file