From 3b9a86e2e5eb7af01fe9dfb99bbc1978c75ee0ee Mon Sep 17 00:00:00 2001 From: xccc-msft Date: Wed, 2 Sep 2020 18:01:29 +0800 Subject: [PATCH 1/2] mgmt compute update test dependency --- .../azure-resourcemanager-compute/pom.xml | 6 +- ...VirtualMachineScaleSetOperationsTests.java | 59 +- ...caleSetWithExtensionProtectedSettings.json | 1538 +++++++++-------- 3 files changed, 892 insertions(+), 711 deletions(-) diff --git a/sdk/resourcemanager/azure-resourcemanager-compute/pom.xml b/sdk/resourcemanager/azure-resourcemanager-compute/pom.xml index bf1c11ec94dd0..5b838bfa1d65d 100644 --- a/sdk/resourcemanager/azure-resourcemanager-compute/pom.xml +++ b/sdk/resourcemanager/azure-resourcemanager-compute/pom.xml @@ -111,9 +111,9 @@ test - com.microsoft.azure - azure-storage - 6.1.0 + com.azure + azure-storage-blob + 12.8.0 test diff --git a/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/VirtualMachineScaleSetOperationsTests.java b/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/VirtualMachineScaleSetOperationsTests.java index 236b8030c2ca5..cb62922a53eb1 100644 --- a/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/VirtualMachineScaleSetOperationsTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/VirtualMachineScaleSetOperationsTests.java @@ -45,6 +45,7 @@ import com.azure.resourcemanager.network.models.VirtualMachineScaleSetNetworkInterface; import com.azure.resourcemanager.network.models.VirtualMachineScaleSetNicIpConfiguration; import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; +import com.azure.resourcemanager.resources.fluentcore.utils.Utils; import com.azure.resourcemanager.resources.models.ResourceGroup; import com.azure.resourcemanager.resources.core.TestUtilities; import com.azure.resourcemanager.resources.fluentcore.arm.AvailabilityZoneId; @@ -52,16 +53,17 @@ import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.storage.models.StorageAccount; import com.azure.resourcemanager.storage.models.StorageAccountKey; -import com.microsoft.azure.storage.CloudStorageAccount; -import com.microsoft.azure.storage.blob.CloudBlobClient; -import com.microsoft.azure.storage.blob.CloudBlobContainer; -import com.microsoft.azure.storage.blob.CloudBlockBlob; -import java.io.ByteArrayOutputStream; +import java.io.File; import java.io.InputStream; import java.net.URI; import java.util.ArrayList; import java.util.List; import java.util.Map; + +import com.azure.storage.blob.BlobContainerClient; +import com.azure.storage.blob.BlobServiceClient; +import com.azure.storage.blob.BlobServiceClientBuilder; +import com.azure.storage.blob.specialized.BlockBlobClient; import org.apache.commons.io.IOUtils; import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Disabled; @@ -106,39 +108,32 @@ public void canUpdateVirtualMachineScaleSetWithExtensionProtectedSettings() thro Assertions.assertTrue(keys.size() > 0); String storageAccountKey = keys.get(0).value(); - final String storageConnectionString = - String - .format( - "DefaultEndpointsProtocol=https;AccountName=%s;AccountKey=%s", - storageAccount.name(), storageAccountKey); - // Get the script to upload - // - InputStream scriptFileAsStream = - VirtualMachineScaleSetOperationsTests.class.getResourceAsStream("/install_apache.sh"); - // Get the size of the stream - // - int fileSize; - ByteArrayOutputStream outputStream = new ByteArrayOutputStream(); - byte[] buffer = new byte[256]; - int bytesRead; - while ((bytesRead = scriptFileAsStream.read(buffer)) != -1) { - outputStream.write(buffer, 0, bytesRead); - } - fileSize = outputStream.size(); - outputStream.close(); // Upload the script file as block blob // URI fileUri; if (isPlaybackMode()) { fileUri = new URI("http://nonexisting.blob.core.windows.net/scripts/install_apache.sh"); } else { - CloudStorageAccount account = CloudStorageAccount.parse(storageConnectionString); - CloudBlobClient cloudBlobClient = account.createCloudBlobClient(); - CloudBlobContainer container = cloudBlobClient.getContainerReference("scripts"); - container.createIfNotExists(); - CloudBlockBlob blob = container.getBlockBlobReference("install_apache.sh"); - blob.upload(scriptFileAsStream, fileSize); - fileUri = blob.getUri(); + final String storageConnectionString = Utils.getStorageConnectionString( + storageAccount.name(), storageAccountKey, storageManager.environment()); + // Get the script to upload + // + String filePath = VirtualMachineScaleSetOperationsTests.class.getResource("/install_apache.sh").getPath(); + File file = new File(filePath); + InputStream inputStream = VirtualMachineScaleSetOperationsTests.class + .getResourceAsStream("/install_apache.sh"); + + BlobServiceClient storageClient = new BlobServiceClientBuilder() + .connectionString(storageConnectionString) + .httpClient(storageManager.httpPipeline().getHttpClient()) + .buildClient(); + BlobContainerClient blobContainerClient = storageClient.getBlobContainerClient("scripts"); + blobContainerClient.create(); + + BlockBlobClient blockBlobClient = blobContainerClient.getBlobClient("install_apache.sh") + .getBlockBlobClient(); + blockBlobClient.upload(inputStream, file.length()); + fileUri = new URI(blockBlobClient.getBlobUrl()); } List fileUris = new ArrayList<>(); fileUris.add(fileUri.toString()); diff --git a/sdk/resourcemanager/azure-resourcemanager-compute/src/test/resources/session-records/canUpdateVirtualMachineScaleSetWithExtensionProtectedSettings.json b/sdk/resourcemanager/azure-resourcemanager-compute/src/test/resources/session-records/canUpdateVirtualMachineScaleSetWithExtensionProtectedSettings.json index 031785993c3f6..7d71ef259c47c 100644 --- a/sdk/resourcemanager/azure-resourcemanager-compute/src/test/resources/session-records/canUpdateVirtualMachineScaleSetWithExtensionProtectedSettings.json +++ b/sdk/resourcemanager/azure-resourcemanager-compute/src/test/resources/session-records/canUpdateVirtualMachineScaleSetWithExtensionProtectedSettings.json @@ -1,953 +1,1139 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg55520?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg90053?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "4762d2fd-10c1-41ec-b25d-f9ec003b2e0d", "Content-Type" : "application/json" }, "Response" : { - "date" : "Tue, 28 Jul 2020 08:05:09 GMT", - "content-length" : "315", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1151", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", + "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "201", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "9949e62a-a271-4efe-a695-ef210767b3c1", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T080509Z:9949e62a-a271-4efe-a695-ef210767b3c1", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "9949e62a-a271-4efe-a695-ef210767b3c1", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg55520\",\"name\":\"javacsmrg55520\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"westus\",\"tags\":{\"date\":\"2020-07-28T08:05:07.819806100Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" - } + "Date" : "Wed, 02 Sep 2020 09:34:24 GMT", + "x-ms-correlation-request-id" : "d81a020b-6935-4371-b8ab-3ca9830b0673", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200902T093424Z:d81a020b-6935-4371-b8ab-3ca9830b0673", + "Expires" : "-1", + "Content-Length" : "225", + "x-ms-request-id" : "d81a020b-6935-4371-b8ab-3ca9830b0673", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg90053\",\"name\":\"javacsmrg90053\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg55520/providers/Microsoft.Storage/storageAccounts/stg7bd53239b9?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg90053/providers/Microsoft.Storage/storageAccounts/stg39420054?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.storage/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "34dedaa9-546f-4acc-b54b-6b3bcd2e5bc0", "Content-Type" : "application/json" }, "Response" : { - "date" : "Tue, 28 Jul 2020 08:05:11 GMT", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "content-length" : "0", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1115", - "retry-after" : "0", + "Server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", + "Pragma" : "no-cache", "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0b564d53-db4f-4314-acd2-1b2049f7c3f3", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T080512Z:0b564d53-db4f-4314-acd2-1b2049f7c3f3", - "content-type" : "text/plain; charset=utf-8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/18310f3c-da13-4d9a-9254-019e267e352b?monitor=true&api-version=2019-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "18310f3c-da13-4d9a-9254-019e267e352b", - "Body" : "" - } + "Date" : "Wed, 02 Sep 2020 09:34:31 GMT", + "x-ms-correlation-request-id" : "be45abed-27a1-4d99-9e70-d54f65f2bfe2", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200902T093431Z:be45abed-27a1-4d99-9e70-d54f65f2bfe2", + "Expires" : "-1", + "Content-Length" : "0", + "x-ms-request-id" : "b8df60d5-7431-40a1-b306-4bad415d126f", + "Body" : "", + "x-ms-client-request-id" : "34dedaa9-546f-4acc-b54b-6b3bcd2e5bc0", + "Content-Type" : "text/plain; charset=utf-8", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/b8df60d5-7431-40a1-b306-4bad415d126f?monitor=true&api-version=2019-06-01" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/18310f3c-da13-4d9a-9254-019e267e352b?monitor=true&api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/b8df60d5-7431-40a1-b306-4bad415d126f?monitor=true&api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "50b6ad52-9832-4663-a87a-e7d1fb25a8ae" }, "Response" : { - "date" : "Tue, 28 Jul 2020 08:05:29 GMT", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "content-length" : "1174", - "expires" : "-1", + "Server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "4578", + "x-ms-ratelimit-remaining-subscription-reads" : "11972", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "62c82070-9ded-492c-81d0-88e8f8ba9587", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T080530Z:62c82070-9ded-492c-81d0-88e8f8ba9587", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "699ef1e7-4551-4f63-ad13-5222d066c3cc", - "Body" : "{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg55520/providers/Microsoft.Storage/storageAccounts/stg7bd53239b9\",\"name\":\"stg7bd53239b9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-07-28T08:05:12.0966813Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-07-28T08:05:12.0966813Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-07-28T08:05:12.0185601Z\",\"primaryEndpoints\":{\"blob\":\"https://stg7bd53239b9.blob.core.windows.net/\",\"queue\":\"https://stg7bd53239b9.queue.core.windows.net/\",\"table\":\"https://stg7bd53239b9.table.core.windows.net/\",\"file\":\"https://stg7bd53239b9.file.core.windows.net/\"},\"primaryLocation\":\"westus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus\",\"statusOfSecondary\":\"available\"}}" - } + "Date" : "Wed, 02 Sep 2020 09:34:48 GMT", + "x-ms-correlation-request-id" : "4f6e004f-a67c-4aaa-a372-3305f7ba6980", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200902T093449Z:4f6e004f-a67c-4aaa-a372-3305f7ba6980", + "Expires" : "-1", + "Content-Length" : "1162", + "x-ms-request-id" : "5c92cd84-5b67-4836-97e1-9a7968ecfd69", + "Body" : "{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg90053/providers/Microsoft.Storage/storageAccounts/stg39420054\",\"name\":\"stg39420054\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-09-02T09:34:30.8109945Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-09-02T09:34:30.8109945Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-09-02T09:34:30.7641205Z\",\"primaryEndpoints\":{\"blob\":\"https://stg39420054.blob.core.windows.net/\",\"queue\":\"https://stg39420054.queue.core.windows.net/\",\"table\":\"https://stg39420054.table.core.windows.net/\",\"file\":\"https://stg39420054.file.core.windows.net/\"},\"primaryLocation\":\"westus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus\",\"statusOfSecondary\":\"available\"}}", + "x-ms-client-request-id" : "50b6ad52-9832-4663-a87a-e7d1fb25a8ae", + "Content-Type" : "application/json" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg55520/providers/Microsoft.Storage/storageAccounts/stg7bd53239b9?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg90053/providers/Microsoft.Storage/storageAccounts/stg39420054?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.storage/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "d284e969-025f-4ace-a92b-ffdb6bd01265", "Content-Type" : "application/json" }, "Response" : { - "date" : "Tue, 28 Jul 2020 08:05:29 GMT", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "content-length" : "1174", - "expires" : "-1", + "Server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "6974", + "x-ms-ratelimit-remaining-subscription-reads" : "11971", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8ae08730-fa0f-4f99-b508-0337ae5ec6a6", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T080530Z:8ae08730-fa0f-4f99-b508-0337ae5ec6a6", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "52c8e9d1-9e59-43f7-95ec-7c539b1d39c7", - "Body" : "{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg55520/providers/Microsoft.Storage/storageAccounts/stg7bd53239b9\",\"name\":\"stg7bd53239b9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-07-28T08:05:12.0966813Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-07-28T08:05:12.0966813Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-07-28T08:05:12.0185601Z\",\"primaryEndpoints\":{\"blob\":\"https://stg7bd53239b9.blob.core.windows.net/\",\"queue\":\"https://stg7bd53239b9.queue.core.windows.net/\",\"table\":\"https://stg7bd53239b9.table.core.windows.net/\",\"file\":\"https://stg7bd53239b9.file.core.windows.net/\"},\"primaryLocation\":\"westus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus\",\"statusOfSecondary\":\"available\"}}" - } + "Date" : "Wed, 02 Sep 2020 09:34:49 GMT", + "x-ms-correlation-request-id" : "546f2564-8671-4d44-84e4-4d230f84cac6", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200902T093449Z:546f2564-8671-4d44-84e4-4d230f84cac6", + "Expires" : "-1", + "Content-Length" : "1162", + "x-ms-request-id" : "67074412-7cdf-45dd-9cbc-7e07dd11c879", + "Body" : "{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg90053/providers/Microsoft.Storage/storageAccounts/stg39420054\",\"name\":\"stg39420054\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-09-02T09:34:30.8109945Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-09-02T09:34:30.8109945Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-09-02T09:34:30.7641205Z\",\"primaryEndpoints\":{\"blob\":\"https://stg39420054.blob.core.windows.net/\",\"queue\":\"https://stg39420054.queue.core.windows.net/\",\"table\":\"https://stg39420054.table.core.windows.net/\",\"file\":\"https://stg39420054.file.core.windows.net/\"},\"primaryLocation\":\"westus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus\",\"statusOfSecondary\":\"available\"}}", + "x-ms-client-request-id" : "d284e969-025f-4ace-a92b-ffdb6bd01265", + "Content-Type" : "application/json" + }, + "Exception" : null }, { "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg55520/providers/Microsoft.Storage/storageAccounts/stg7bd53239b9/listKeys?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg90053/providers/Microsoft.Storage/storageAccounts/stg39420054/listKeys?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.storage/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "b096fb24-b676-4303-a9cf-bacaee7f9faf", "Content-Type" : "application/json" }, "Response" : { - "date" : "Tue, 28 Jul 2020 08:05:30 GMT", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "content-length" : "288", - "expires" : "-1", + "Server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f304265c-5219-45bc-83c6-b7f63cb061b8", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "11999", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T080531Z:f304265c-5219-45bc-83c6-b7f63cb061b8", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "177adc7f-2529-4a68-bc34-0e89f8eadde7", - "Body" : "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"***REMOVED***\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"***REMOVED***\",\"permissions\":\"FULL\"}]}" - } + "Date" : "Wed, 02 Sep 2020 09:34:49 GMT", + "x-ms-correlation-request-id" : "f873d083-5128-465e-b728-ab2964776685", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "x-ms-ratelimit-remaining-subscription-resource-requests" : "11996", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200902T093449Z:f873d083-5128-465e-b728-ab2964776685", + "Expires" : "-1", + "Content-Length" : "288", + "x-ms-request-id" : "ef8f62ff-3578-43c7-8592-81c2ab66bc47", + "Body" : "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"***REMOVED***\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"***REMOVED***\",\"permissions\":\"FULL\"}]}", + "x-ms-client-request-id" : "b096fb24-b676-4303-a9cf-bacaee7f9faf", + "Content-Type" : "application/json" + }, + "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg55520/providers/Microsoft.Network/virtualNetworks/vmssvnet636096?api-version=2020-05-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg90053/providers/Microsoft.Network/virtualNetworks/vmssvnet746670?api-version=2020-05-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "172e2d86-6729-4059-880f-660697b43395", "Content-Type" : "application/json" }, "Response" : { - "date" : "Tue, 28 Jul 2020 08:05:40 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "azure-asyncnotification" : "Enabled", - "content-length" : "1342", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1145", - "retry-after" : "0", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1195", + "Pragma" : "no-cache", + "Azure-AsyncNotification" : "Enabled", "StatusCode" : "201", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "bc92d302-5c37-4d29-b7a5-0f9a977f9ce8", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "31a7d382-5b35-4906-9d4d-f96c495feb12", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T080540Z:bc92d302-5c37-4d29-b7a5-0f9a977f9ce8", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "e3740db4-46bb-45dc-b297-0b321891f0c1", - "Body" : "{\r\n \"name\": \"vmssvnet636096\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg55520/providers/Microsoft.Network/virtualNetworks/vmssvnet636096\",\r\n \"etag\": \"W/\\\"60816e1b-ffbc-4849-babc-bba1f6d18bd2\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"701a1dd3-0d2c-4c82-a01b-985379cbcf30\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg55520/providers/Microsoft.Network/virtualNetworks/vmssvnet636096/subnets/subnet1\",\r\n \"etag\": \"W/\\\"60816e1b-ffbc-4849-babc-bba1f6d18bd2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e3740db4-46bb-45dc-b297-0b321891f0c1?api-version=2020-05-01" - } + "Date" : "Wed, 02 Sep 2020 09:35:01 GMT", + "x-ms-correlation-request-id" : "839fb833-d0f6-4a35-b75e-666bb148fc0b", + "x-ms-arm-service-request-id" : "b296f211-31f2-44c1-983a-239bf03b3382", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200902T093501Z:839fb833-d0f6-4a35-b75e-666bb148fc0b", + "Expires" : "-1", + "Content-Length" : "1342", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3d32f023-7f1d-4bf1-bc59-d531a75f12f9?api-version=2020-05-01", + "x-ms-request-id" : "3d32f023-7f1d-4bf1-bc59-d531a75f12f9", + "Body" : "{\r\n \"name\": \"vmssvnet746670\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg90053/providers/Microsoft.Network/virtualNetworks/vmssvnet746670\",\r\n \"etag\": \"W/\\\"4f9b5059-2b56-4b46-9201-cda6202147a4\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"daa67159-8a5d-45b2-be40-9d53a6febfda\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg90053/providers/Microsoft.Network/virtualNetworks/vmssvnet746670/subnets/subnet1\",\r\n \"etag\": \"W/\\\"4f9b5059-2b56-4b46-9201-cda6202147a4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "x-ms-client-request-id" : "172e2d86-6729-4059-880f-660697b43395", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e3740db4-46bb-45dc-b297-0b321891f0c1?api-version=2020-05-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3d32f023-7f1d-4bf1-bc59-d531a75f12f9?api-version=2020-05-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "40e33d94-f137-4fdc-95eb-95ed4ba2f566" }, "Response" : { - "date" : "Tue, 28 Jul 2020 08:05:43 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "29", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "3590", + "x-ms-ratelimit-remaining-subscription-reads" : "11970", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f1893b76-d206-4941-b899-cd028c825b8a", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "1dd48b5c-b2b0-4fb4-8074-420db2e3ad9f", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T080544Z:f1893b76-d206-4941-b899-cd028c825b8a", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "2a4f5a38-0707-439b-a0c6-d4daffa52d35", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" - } + "Date" : "Wed, 02 Sep 2020 09:35:05 GMT", + "x-ms-correlation-request-id" : "a79b2e6d-d737-4f70-90d8-75ea117f7320", + "x-ms-arm-service-request-id" : "a40c0d02-34c2-44a4-973f-9e7cef755f2b", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200902T093505Z:a79b2e6d-d737-4f70-90d8-75ea117f7320", + "Expires" : "-1", + "Content-Length" : "29", + "x-ms-request-id" : "86d756f7-2888-4de8-a5c8-fe8334b9d24f", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "x-ms-client-request-id" : "40e33d94-f137-4fdc-95eb-95ed4ba2f566", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg55520/providers/Microsoft.Network/virtualNetworks/vmssvnet636096?api-version=2020-05-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg90053/providers/Microsoft.Network/virtualNetworks/vmssvnet746670?api-version=2020-05-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "3c9096fa-13f3-44cb-b292-451f41535d8a" }, "Response" : { - "date" : "Tue, 28 Jul 2020 08:05:44 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1344", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "2871", + "x-ms-ratelimit-remaining-subscription-reads" : "11969", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8a73e26d-4ad3-43cd-86ac-14876badbee1", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "fc0f9010-daaf-4d43-b20e-5946d6b80f07", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T080545Z:8a73e26d-4ad3-43cd-86ac-14876badbee1", - "etag" : "W/\"a7514b7b-bcc2-4c28-8c04-5fe80d3e504a\"", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "4feb8e78-89e7-4bf5-94ab-15170fa4972c", - "Body" : "{\r\n \"name\": \"vmssvnet636096\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg55520/providers/Microsoft.Network/virtualNetworks/vmssvnet636096\",\r\n \"etag\": \"W/\\\"a7514b7b-bcc2-4c28-8c04-5fe80d3e504a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"701a1dd3-0d2c-4c82-a01b-985379cbcf30\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg55520/providers/Microsoft.Network/virtualNetworks/vmssvnet636096/subnets/subnet1\",\r\n \"etag\": \"W/\\\"a7514b7b-bcc2-4c28-8c04-5fe80d3e504a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" - } + "Date" : "Wed, 02 Sep 2020 09:35:05 GMT", + "x-ms-correlation-request-id" : "0f9bce61-8ced-4078-9193-51489b717559", + "x-ms-arm-service-request-id" : "b0efda03-56d8-40d2-9541-1ad6bb8fd61f", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "ETag" : "W/\"13f3cf02-b9a9-4158-988e-40afb239bc6a\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200902T093506Z:0f9bce61-8ced-4078-9193-51489b717559", + "Expires" : "-1", + "Content-Length" : "1344", + "x-ms-request-id" : "d4b8a2e3-b86e-48da-aee8-d2794ce967ff", + "Body" : "{\r\n \"name\": \"vmssvnet746670\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg90053/providers/Microsoft.Network/virtualNetworks/vmssvnet746670\",\r\n \"etag\": \"W/\\\"13f3cf02-b9a9-4158-988e-40afb239bc6a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"daa67159-8a5d-45b2-be40-9d53a6febfda\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg90053/providers/Microsoft.Network/virtualNetworks/vmssvnet746670/subnets/subnet1\",\r\n \"etag\": \"W/\\\"13f3cf02-b9a9-4158-988e-40afb239bc6a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "x-ms-client-request-id" : "3c9096fa-13f3-44cb-b292-451f41535d8a", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg55520/providers/Microsoft.Storage/storageAccounts/stg4243703852?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg90053/providers/Microsoft.Storage/storageAccounts/stg41186ec6?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.storage/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "940daffe-8c38-461e-894e-ba992be657c4", "Content-Type" : "application/json" }, "Response" : { - "date" : "Tue, 28 Jul 2020 08:05:48 GMT", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "content-length" : "0", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1142", - "retry-after" : "0", + "Server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1194", + "Pragma" : "no-cache", "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "2b7a98bf-6d78-42bb-87eb-573415b962c9", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T080548Z:2b7a98bf-6d78-42bb-87eb-573415b962c9", - "content-type" : "text/plain; charset=utf-8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/978f06e5-fa4f-47a6-b6d5-d0965b88c57d?monitor=true&api-version=2019-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "978f06e5-fa4f-47a6-b6d5-d0965b88c57d", - "Body" : "" - } + "Date" : "Wed, 02 Sep 2020 09:35:09 GMT", + "x-ms-correlation-request-id" : "7e7b0b24-6415-41e3-a3dc-1c94df85d2a6", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200902T093509Z:7e7b0b24-6415-41e3-a3dc-1c94df85d2a6", + "Expires" : "-1", + "Content-Length" : "0", + "x-ms-request-id" : "8bef5eb6-2f0e-43e5-92dc-c71074cb046b", + "Body" : "", + "x-ms-client-request-id" : "940daffe-8c38-461e-894e-ba992be657c4", + "Content-Type" : "text/plain; charset=utf-8", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/8bef5eb6-2f0e-43e5-92dc-c71074cb046b?monitor=true&api-version=2019-06-01" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/978f06e5-fa4f-47a6-b6d5-d0965b88c57d?monitor=true&api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/8bef5eb6-2f0e-43e5-92dc-c71074cb046b?monitor=true&api-version=2019-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "3b63bcf6-ec2e-4399-8313-ffd0a622cb19" }, "Response" : { - "date" : "Tue, 28 Jul 2020 08:06:05 GMT", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "content-length" : "1174", - "expires" : "-1", + "Server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "4557", + "x-ms-ratelimit-remaining-subscription-reads" : "11968", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "1648a826-3c93-447f-9336-1d7a161ad17a", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T080605Z:1648a826-3c93-447f-9336-1d7a161ad17a", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "c0d792e9-64f6-4277-b3b0-ae4c092d9932", - "Body" : "{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg55520/providers/Microsoft.Storage/storageAccounts/stg4243703852\",\"name\":\"stg4243703852\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-07-28T08:05:47.5661886Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-07-28T08:05:47.5661886Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-07-28T08:05:47.5036907Z\",\"primaryEndpoints\":{\"blob\":\"https://stg4243703852.blob.core.windows.net/\",\"queue\":\"https://stg4243703852.queue.core.windows.net/\",\"table\":\"https://stg4243703852.table.core.windows.net/\",\"file\":\"https://stg4243703852.file.core.windows.net/\"},\"primaryLocation\":\"westus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus\",\"statusOfSecondary\":\"available\"}}" - } + "Date" : "Wed, 02 Sep 2020 09:35:26 GMT", + "x-ms-correlation-request-id" : "4175bbb2-9bd5-469f-b6d8-72f7ed0132c3", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200902T093526Z:4175bbb2-9bd5-469f-b6d8-72f7ed0132c3", + "Expires" : "-1", + "Content-Length" : "1162", + "x-ms-request-id" : "5ac85bb6-fa0e-4649-a4e2-27829dcd06c0", + "Body" : "{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg90053/providers/Microsoft.Storage/storageAccounts/stg41186ec6\",\"name\":\"stg41186ec6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-09-02T09:35:08.7962162Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-09-02T09:35:08.7962162Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-09-02T09:35:08.7337542Z\",\"primaryEndpoints\":{\"blob\":\"https://stg41186ec6.blob.core.windows.net/\",\"queue\":\"https://stg41186ec6.queue.core.windows.net/\",\"table\":\"https://stg41186ec6.table.core.windows.net/\",\"file\":\"https://stg41186ec6.file.core.windows.net/\"},\"primaryLocation\":\"westus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus\",\"statusOfSecondary\":\"available\"}}", + "x-ms-client-request-id" : "3b63bcf6-ec2e-4399-8313-ffd0a622cb19", + "Content-Type" : "application/json" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg55520/providers/Microsoft.Storage/storageAccounts/stg4243703852?api-version=2019-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg90053/providers/Microsoft.Storage/storageAccounts/stg41186ec6?api-version=2019-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.storage/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "8654583f-2e6d-4ac7-8ab0-c2cb7e499837", "Content-Type" : "application/json" }, "Response" : { - "date" : "Tue, 28 Jul 2020 08:06:05 GMT", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "content-length" : "1174", - "expires" : "-1", + "Server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "2858", + "x-ms-ratelimit-remaining-subscription-reads" : "11967", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "532a1acf-fa83-4c70-8ad0-b787cb8e97cc", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T080606Z:532a1acf-fa83-4c70-8ad0-b787cb8e97cc", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "22c791d2-1516-46f9-b1cc-da0112ccabb6", - "Body" : "{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg55520/providers/Microsoft.Storage/storageAccounts/stg4243703852\",\"name\":\"stg4243703852\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-07-28T08:05:47.5661886Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-07-28T08:05:47.5661886Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-07-28T08:05:47.5036907Z\",\"primaryEndpoints\":{\"blob\":\"https://stg4243703852.blob.core.windows.net/\",\"queue\":\"https://stg4243703852.queue.core.windows.net/\",\"table\":\"https://stg4243703852.table.core.windows.net/\",\"file\":\"https://stg4243703852.file.core.windows.net/\"},\"primaryLocation\":\"westus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus\",\"statusOfSecondary\":\"available\"}}" - } + "Date" : "Wed, 02 Sep 2020 09:35:26 GMT", + "x-ms-correlation-request-id" : "b7b2a834-3ca1-49f5-b1eb-8e2735f1dc75", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200902T093526Z:b7b2a834-3ca1-49f5-b1eb-8e2735f1dc75", + "Expires" : "-1", + "Content-Length" : "1162", + "x-ms-request-id" : "112878b3-18ab-41c9-930b-869d9a0ca4c9", + "Body" : "{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg90053/providers/Microsoft.Storage/storageAccounts/stg41186ec6\",\"name\":\"stg41186ec6\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"privateEndpointConnections\":[],\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-09-02T09:35:08.7962162Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2020-09-02T09:35:08.7962162Z\"}},\"keySource\":\"Microsoft.Storage\"},\"provisioningState\":\"Succeeded\",\"creationTime\":\"2020-09-02T09:35:08.7337542Z\",\"primaryEndpoints\":{\"blob\":\"https://stg41186ec6.blob.core.windows.net/\",\"queue\":\"https://stg41186ec6.queue.core.windows.net/\",\"table\":\"https://stg41186ec6.table.core.windows.net/\",\"file\":\"https://stg41186ec6.file.core.windows.net/\"},\"primaryLocation\":\"westus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus\",\"statusOfSecondary\":\"available\"}}", + "x-ms-client-request-id" : "8654583f-2e6d-4ac7-8ab0-c2cb7e499837", + "Content-Type" : "application/json" + }, + "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg55520/providers/Microsoft.Compute/virtualMachineScaleSets/vmss93850?api-version=2019-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg90053/providers/Microsoft.Compute/virtualMachineScaleSets/vmss59749?api-version=2019-12-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "c53dc5f0-b960-4d1f-bacb-71207b18d35d", "Content-Type" : "application/json" }, "Response" : { - "date" : "Tue, 28 Jul 2020 08:06:09 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "azure-asyncnotification" : "Enabled", - "content-length" : "2584", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", "x-ms-request-charge" : "4", - "x-ms-ratelimit-remaining-subscription-writes" : "1119", - "retry-after" : "0", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1193", + "Pragma" : "no-cache", + "Azure-AsyncNotification" : "Enabled", "StatusCode" : "201", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8b0a6bfc-deb2-4d69-ab66-69b267471cf5", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateVMScaleSet3Min;56,Microsoft.Compute/CreateVMScaleSet30Min;293,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1178,Microsoft.Compute/VmssQueuedVMOperations;4796", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T080609Z:8b0a6bfc-deb2-4d69-ab66-69b267471cf5", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "74a1f23f-d16e-4d90-9476-c8affbb56e59", - "Body" : "{\r\n \"name\": \"vmss93850\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg55520/providers/Microsoft.Compute/virtualMachineScaleSets/vmss93850\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss93850-vm\",\r\n \"adminUsername\": \"jvuser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"vhdContainers\": [\r\n \"https://stg4243703852.blob.core.windows.net/vhds\",\r\n \"https://stg7bd53239b9.blob.core.windows.net/vhds\"\r\n ],\r\n \"name\": \"vmss93850-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg55520/providers/Microsoft.Network/virtualNetworks/vmssvnet636096/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\"}}]}}]},\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"CustomScriptForLinux\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://stg7bd53239b9.blob.core.windows.net/scripts/install_apache.sh\"]}\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": \"90f162cc-152b-4d0d-8387-ff6daed77e35\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/74a1f23f-d16e-4d90-9476-c8affbb56e59?api-version=2019-12-01" - } + "Date" : "Wed, 02 Sep 2020 09:35:30 GMT", + "x-ms-correlation-request-id" : "0b39cdeb-3dd5-4e8e-8810-366c22fa93c3", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateVMScaleSet3Min;59,Microsoft.Compute/CreateVMScaleSet30Min;299,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1196,Microsoft.Compute/VmssQueuedVMOperations;4796", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200902T093530Z:0b39cdeb-3dd5-4e8e-8810-366c22fa93c3", + "Expires" : "-1", + "Content-Length" : "2578", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/700897c1-5d2d-4033-9991-7dbabc1e485e?api-version=2019-12-01", + "x-ms-request-id" : "700897c1-5d2d-4033-9991-7dbabc1e485e", + "Body" : "{\r\n \"name\": \"vmss59749\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg90053/providers/Microsoft.Compute/virtualMachineScaleSets/vmss59749\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss59749-vm\",\r\n \"adminUsername\": \"jvuser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"vhdContainers\": [\r\n \"https://stg41186ec6.blob.core.windows.net/vhds\",\r\n \"https://stg39420054.blob.core.windows.net/vhds\"\r\n ],\r\n \"name\": \"vmss59749-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg90053/providers/Microsoft.Network/virtualNetworks/vmssvnet746670/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\"}}]}}]},\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"CustomScriptForLinux\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://stg39420054.blob.core.windows.net/scripts/install_apache.sh\"]}\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": \"70dce7df-cc2b-4381-a8d7-92f0b0b8dbe3\"\r\n }\r\n}", + "x-ms-client-request-id" : "c53dc5f0-b960-4d1f-bacb-71207b18d35d", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/74a1f23f-d16e-4d90-9476-c8affbb56e59?api-version=2019-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/700897c1-5d2d-4033-9991-7dbabc1e485e?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "5970b893-e7e9-4046-9bff-542cf421733e" }, "Response" : { - "date" : "Tue, 28 Jul 2020 08:06:19 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "11966", + "StatusCode" : "200", + "Date" : "Wed, 02 Sep 2020 09:35:40 GMT", + "x-ms-correlation-request-id" : "2c826dda-5d64-471c-93c3-626f3b8822ff", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29999", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200902T093541Z:2c826dda-5d64-471c-93c3-626f3b8822ff", + "Expires" : "-1", + "Content-Length" : "134", + "x-ms-request-id" : "7ed0f7a3-5bc2-4159-baf1-738eea5b8073", + "Body" : "{\r\n \"startTime\": \"2020-09-02T09:35:29.0605825+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"700897c1-5d2d-4033-9991-7dbabc1e485e\"\r\n}", + "x-ms-client-request-id" : "5970b893-e7e9-4046-9bff-542cf421733e", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/700897c1-5d2d-4033-9991-7dbabc1e485e?api-version=2019-12-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "a2f72621-569a-42c1-b1b3-085d1a14846b" + }, + "Response" : { + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "11965", + "StatusCode" : "200", + "Date" : "Wed, 02 Sep 2020 09:36:42 GMT", + "x-ms-correlation-request-id" : "63cca511-58ce-458f-8339-d5a32ac2a8a7", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29998", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200902T093642Z:63cca511-58ce-458f-8339-d5a32ac2a8a7", + "Expires" : "-1", + "Content-Length" : "134", + "x-ms-request-id" : "fba0d235-292a-4d15-8e4c-15273f29a67f", + "Body" : "{\r\n \"startTime\": \"2020-09-02T09:35:29.0605825+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"700897c1-5d2d-4033-9991-7dbabc1e485e\"\r\n}", + "x-ms-client-request-id" : "a2f72621-569a-42c1-b1b3-085d1a14846b", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/700897c1-5d2d-4033-9991-7dbabc1e485e?api-version=2019-12-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "21ecf3aa-7ab9-467e-996f-74bea7865253" + }, + "Response" : { + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "11964", + "StatusCode" : "200", + "Date" : "Wed, 02 Sep 2020 09:37:13 GMT", + "x-ms-correlation-request-id" : "9131966a-49b9-4c52-9a37-1aae104e49fe", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29997", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200902T093713Z:9131966a-49b9-4c52-9a37-1aae104e49fe", + "Expires" : "-1", + "Content-Length" : "134", + "x-ms-request-id" : "ab3730fa-e379-4670-98e5-fc4eeb1dcba9", + "Body" : "{\r\n \"startTime\": \"2020-09-02T09:35:29.0605825+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"700897c1-5d2d-4033-9991-7dbabc1e485e\"\r\n}", + "x-ms-client-request-id" : "21ecf3aa-7ab9-467e-996f-74bea7865253", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/700897c1-5d2d-4033-9991-7dbabc1e485e?api-version=2019-12-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "b38625c4-c606-420d-b73f-a9ac71adb48c" + }, + "Response" : { + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "3561", + "x-ms-ratelimit-remaining-subscription-reads" : "11963", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "289410e8-e055-4602-9436-f9574e424b17", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29974", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T080620Z:289410e8-e055-4602-9436-f9574e424b17", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "6fd755c2-7f14-4677-a084-0d12bb065531", - "Body" : "{\r\n \"startTime\": \"2020-07-28T08:06:08.4762491+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"74a1f23f-d16e-4d90-9476-c8affbb56e59\"\r\n}" - } + "Date" : "Wed, 02 Sep 2020 09:37:43 GMT", + "x-ms-correlation-request-id" : "73e453e0-cbbf-4da6-80ed-3718e27cdb06", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29995", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200902T093743Z:73e453e0-cbbf-4da6-80ed-3718e27cdb06", + "Expires" : "-1", + "Content-Length" : "134", + "x-ms-request-id" : "23a41223-988e-4489-b5ac-8ad3e60b9308", + "Body" : "{\r\n \"startTime\": \"2020-09-02T09:35:29.0605825+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"700897c1-5d2d-4033-9991-7dbabc1e485e\"\r\n}", + "x-ms-client-request-id" : "b38625c4-c606-420d-b73f-a9ac71adb48c", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/74a1f23f-d16e-4d90-9476-c8affbb56e59?api-version=2019-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/700897c1-5d2d-4033-9991-7dbabc1e485e?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "19952eb3-60c1-4e65-bb0f-d904e6685fd2" }, "Response" : { - "date" : "Tue, 28 Jul 2020 08:07:21 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "4516", + "x-ms-ratelimit-remaining-subscription-reads" : "11962", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3c654716-f3f0-4a26-abe8-f5577b9b86df", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14982,Microsoft.Compute/GetOperation30Min;29968", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T080721Z:3c654716-f3f0-4a26-abe8-f5577b9b86df", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "198d4127-e617-4abf-a022-28e9efcf42aa", - "Body" : "{\r\n \"startTime\": \"2020-07-28T08:06:08.4762491+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"74a1f23f-d16e-4d90-9476-c8affbb56e59\"\r\n}" - } + "Date" : "Wed, 02 Sep 2020 09:38:13 GMT", + "x-ms-correlation-request-id" : "a2656b13-5fa1-4d8f-bb56-27b3b5093fd8", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29994", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200902T093814Z:a2656b13-5fa1-4d8f-bb56-27b3b5093fd8", + "Expires" : "-1", + "Content-Length" : "134", + "x-ms-request-id" : "cee14389-0c83-4566-abb1-e7c0e974f320", + "Body" : "{\r\n \"startTime\": \"2020-09-02T09:35:29.0605825+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"700897c1-5d2d-4033-9991-7dbabc1e485e\"\r\n}", + "x-ms-client-request-id" : "19952eb3-60c1-4e65-bb0f-d904e6685fd2", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/74a1f23f-d16e-4d90-9476-c8affbb56e59?api-version=2019-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/700897c1-5d2d-4033-9991-7dbabc1e485e?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "e5fca734-5775-479e-b87e-e8f6cf0e1e75" }, "Response" : { - "date" : "Tue, 28 Jul 2020 08:07:51 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "6911", + "x-ms-ratelimit-remaining-subscription-reads" : "11961", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "34dac967-74b7-4a92-99e7-f84113ed89fe", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14981,Microsoft.Compute/GetOperation30Min;29963", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T080752Z:34dac967-74b7-4a92-99e7-f84113ed89fe", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "ec4ab3a8-f0b0-44fa-9efb-0ab526d3bb48", - "Body" : "{\r\n \"startTime\": \"2020-07-28T08:06:08.4762491+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"74a1f23f-d16e-4d90-9476-c8affbb56e59\"\r\n}" - } + "Date" : "Wed, 02 Sep 2020 09:38:44 GMT", + "x-ms-correlation-request-id" : "6cb0502a-ed41-4d77-8004-9a4a3c7781e2", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29993", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200902T093845Z:6cb0502a-ed41-4d77-8004-9a4a3c7781e2", + "Expires" : "-1", + "Content-Length" : "134", + "x-ms-request-id" : "0ad7b40e-69ea-4dca-8067-864e956bf39a", + "Body" : "{\r\n \"startTime\": \"2020-09-02T09:35:29.0605825+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"700897c1-5d2d-4033-9991-7dbabc1e485e\"\r\n}", + "x-ms-client-request-id" : "e5fca734-5775-479e-b87e-e8f6cf0e1e75", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/74a1f23f-d16e-4d90-9476-c8affbb56e59?api-version=2019-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/700897c1-5d2d-4033-9991-7dbabc1e485e?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "346b70bf-7b0e-488c-a7bd-849496d7f722" }, "Response" : { - "date" : "Tue, 28 Jul 2020 08:08:22 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "184", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "2760", + "x-ms-ratelimit-remaining-subscription-reads" : "11960", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e7cfe400-a034-4493-a797-0eb46c60b6f2", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14977,Microsoft.Compute/GetOperation30Min;29957", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T080822Z:e7cfe400-a034-4493-a797-0eb46c60b6f2", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "6c8092fe-62d8-4fd2-916c-1518fc11d94e", - "Body" : "{\r\n \"startTime\": \"2020-07-28T08:06:08.4762491+00:00\",\r\n \"endTime\": \"2020-07-28T08:08:21.9824665+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"74a1f23f-d16e-4d90-9476-c8affbb56e59\"\r\n}" - } + "Date" : "Wed, 02 Sep 2020 09:39:14 GMT", + "x-ms-correlation-request-id" : "bda48cee-ad2c-46a7-bbde-3d6532d5e2a0", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29992", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200902T093915Z:bda48cee-ad2c-46a7-bbde-3d6532d5e2a0", + "Expires" : "-1", + "Content-Length" : "184", + "x-ms-request-id" : "67f4b648-b34f-42aa-bbcc-e272139c257b", + "Body" : "{\r\n \"startTime\": \"2020-09-02T09:35:29.0605825+00:00\",\r\n \"endTime\": \"2020-09-02T09:39:13.6335899+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"700897c1-5d2d-4033-9991-7dbabc1e485e\"\r\n}", + "x-ms-client-request-id" : "346b70bf-7b0e-488c-a7bd-849496d7f722", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg55520/providers/Microsoft.Compute/virtualMachineScaleSets/vmss93850?api-version=2019-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg90053/providers/Microsoft.Compute/virtualMachineScaleSets/vmss59749?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "3593f03e-2535-4c04-a7ca-a786b0ecbf39" }, "Response" : { - "date" : "Tue, 28 Jul 2020 08:08:22 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "2585", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "2759", + "x-ms-ratelimit-remaining-subscription-reads" : "11959", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0c8cf48a-c75f-43c7-8c44-baed9af6e22d", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMScaleSet3Min;182,Microsoft.Compute/GetVMScaleSet30Min;1263", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T080823Z:0c8cf48a-c75f-43c7-8c44-baed9af6e22d", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "a9fddc75-4b3c-484c-84ae-67b5da8aae07", - "Body" : "{\r\n \"name\": \"vmss93850\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg55520/providers/Microsoft.Compute/virtualMachineScaleSets/vmss93850\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss93850-vm\",\r\n \"adminUsername\": \"jvuser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"vhdContainers\": [\r\n \"https://stg4243703852.blob.core.windows.net/vhds\",\r\n \"https://stg7bd53239b9.blob.core.windows.net/vhds\"\r\n ],\r\n \"name\": \"vmss93850-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg55520/providers/Microsoft.Network/virtualNetworks/vmssvnet636096/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\"}}]}}]},\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"CustomScriptForLinux\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://stg7bd53239b9.blob.core.windows.net/scripts/install_apache.sh\"]}\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": \"90f162cc-152b-4d0d-8387-ff6daed77e35\"\r\n }\r\n}" - } + "Date" : "Wed, 02 Sep 2020 09:39:14 GMT", + "x-ms-correlation-request-id" : "dde2ba59-7523-4753-816d-f543bc754532", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMScaleSet3Min;199,Microsoft.Compute/GetVMScaleSet30Min;1299", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200902T093915Z:dde2ba59-7523-4753-816d-f543bc754532", + "Expires" : "-1", + "Content-Length" : "2579", + "x-ms-request-id" : "ff885838-125d-4887-9d24-cc12c181a4ca", + "Body" : "{\r\n \"name\": \"vmss59749\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg90053/providers/Microsoft.Compute/virtualMachineScaleSets/vmss59749\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss59749-vm\",\r\n \"adminUsername\": \"jvuser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"vhdContainers\": [\r\n \"https://stg41186ec6.blob.core.windows.net/vhds\",\r\n \"https://stg39420054.blob.core.windows.net/vhds\"\r\n ],\r\n \"name\": \"vmss59749-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg90053/providers/Microsoft.Network/virtualNetworks/vmssvnet746670/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\"}}]}}]},\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"CustomScriptForLinux\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://stg39420054.blob.core.windows.net/scripts/install_apache.sh\"]}\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": \"70dce7df-cc2b-4381-a8d7-92f0b0b8dbe3\"\r\n }\r\n}", + "x-ms-client-request-id" : "3593f03e-2535-4c04-a7ca-a786b0ecbf39", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg55520/providers/Microsoft.Compute/virtualMachineScaleSets/vmss93850?api-version=2019-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg90053/providers/Microsoft.Compute/virtualMachineScaleSets/vmss59749?api-version=2019-12-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "3f6595a5-425c-45fe-9aed-9ff59d7f57a3", "Content-Type" : "application/json" }, "Response" : { - "date" : "Tue, 28 Jul 2020 08:08:24 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "2585", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "3484", + "x-ms-ratelimit-remaining-subscription-reads" : "11958", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b63c2b29-8f6c-4cba-9c6f-37e030cae32b", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMScaleSet3Min;181,Microsoft.Compute/GetVMScaleSet30Min;1262", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T080824Z:b63c2b29-8f6c-4cba-9c6f-37e030cae32b", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "135cd312-70df-4ceb-8c2d-f218af2dc067", - "Body" : "{\r\n \"name\": \"vmss93850\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg55520/providers/Microsoft.Compute/virtualMachineScaleSets/vmss93850\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss93850-vm\",\r\n \"adminUsername\": \"jvuser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"vhdContainers\": [\r\n \"https://stg4243703852.blob.core.windows.net/vhds\",\r\n \"https://stg7bd53239b9.blob.core.windows.net/vhds\"\r\n ],\r\n \"name\": \"vmss93850-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg55520/providers/Microsoft.Network/virtualNetworks/vmssvnet636096/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\"}}]}}]},\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"CustomScriptForLinux\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://stg7bd53239b9.blob.core.windows.net/scripts/install_apache.sh\"]}\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": \"90f162cc-152b-4d0d-8387-ff6daed77e35\"\r\n }\r\n}" - } + "Date" : "Wed, 02 Sep 2020 09:39:15 GMT", + "x-ms-correlation-request-id" : "17842893-98e0-442e-8d21-0d30255eebc8", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMScaleSet3Min;198,Microsoft.Compute/GetVMScaleSet30Min;1298", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200902T093915Z:17842893-98e0-442e-8d21-0d30255eebc8", + "Expires" : "-1", + "Content-Length" : "2579", + "x-ms-request-id" : "37d9c233-536a-4c85-a9fb-cbfc4508388f", + "Body" : "{\r\n \"name\": \"vmss59749\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg90053/providers/Microsoft.Compute/virtualMachineScaleSets/vmss59749\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss59749-vm\",\r\n \"adminUsername\": \"jvuser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"vhdContainers\": [\r\n \"https://stg41186ec6.blob.core.windows.net/vhds\",\r\n \"https://stg39420054.blob.core.windows.net/vhds\"\r\n ],\r\n \"name\": \"vmss59749-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg90053/providers/Microsoft.Network/virtualNetworks/vmssvnet746670/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\"}}]}}]},\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"CustomScriptForLinux\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://stg39420054.blob.core.windows.net/scripts/install_apache.sh\"]}\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": \"70dce7df-cc2b-4381-a8d7-92f0b0b8dbe3\"\r\n }\r\n}", + "x-ms-client-request-id" : "3f6595a5-425c-45fe-9aed-9ff59d7f57a3", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "PATCH", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg55520/providers/Microsoft.Compute/virtualMachineScaleSets/vmss93850?api-version=2019-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg90053/providers/Microsoft.Compute/virtualMachineScaleSets/vmss59749?api-version=2019-12-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "7276f779-d7e5-460f-a6b7-d36928ce13ec", "Content-Type" : "application/json" }, "Response" : { - "date" : "Tue, 28 Jul 2020 08:08:27 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "azure-asyncnotification" : "Enabled", - "content-length" : "2584", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", "x-ms-request-charge" : "2", - "x-ms-ratelimit-remaining-subscription-writes" : "1134", - "retry-after" : "0", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1192", + "Pragma" : "no-cache", + "Azure-AsyncNotification" : "Enabled", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "4cc19f39-cb73-4ad0-8e45-f25dce62ff6b", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/VMScaleSetActions3Min;238,Microsoft.Compute/VMScaleSetActions30Min;1197,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1166,Microsoft.Compute/VmssQueuedVMOperations;4798", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T080828Z:4cc19f39-cb73-4ad0-8e45-f25dce62ff6b", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "851e8914-4ea2-453d-96ab-09fb068ac007", - "Body" : "{\r\n \"name\": \"vmss93850\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg55520/providers/Microsoft.Compute/virtualMachineScaleSets/vmss93850\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 3\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss93850-vm\",\r\n \"adminUsername\": \"jvuser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"vhdContainers\": [\r\n \"https://stg4243703852.blob.core.windows.net/vhds\",\r\n \"https://stg7bd53239b9.blob.core.windows.net/vhds\"\r\n ],\r\n \"name\": \"vmss93850-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg55520/providers/Microsoft.Network/virtualNetworks/vmssvnet636096/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\"}}]}}]},\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"CustomScriptForLinux\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://stg7bd53239b9.blob.core.windows.net/scripts/install_apache.sh\"]}\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": \"90f162cc-152b-4d0d-8387-ff6daed77e35\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/851e8914-4ea2-453d-96ab-09fb068ac007?api-version=2019-12-01" - } + "Date" : "Wed, 02 Sep 2020 09:39:19 GMT", + "x-ms-correlation-request-id" : "35bef94f-5317-4860-a8b3-899cef344de3", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/VMScaleSetActions3Min;239,Microsoft.Compute/VMScaleSetActions30Min;1199,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1194,Microsoft.Compute/VmssQueuedVMOperations;4798", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200902T093919Z:35bef94f-5317-4860-a8b3-899cef344de3", + "Expires" : "-1", + "Content-Length" : "2578", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/1f298fe8-7f24-4fab-9dc1-9cc7b4a42031?api-version=2019-12-01", + "x-ms-request-id" : "1f298fe8-7f24-4fab-9dc1-9cc7b4a42031", + "Body" : "{\r\n \"name\": \"vmss59749\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg90053/providers/Microsoft.Compute/virtualMachineScaleSets/vmss59749\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 3\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss59749-vm\",\r\n \"adminUsername\": \"jvuser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"vhdContainers\": [\r\n \"https://stg41186ec6.blob.core.windows.net/vhds\",\r\n \"https://stg39420054.blob.core.windows.net/vhds\"\r\n ],\r\n \"name\": \"vmss59749-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg90053/providers/Microsoft.Network/virtualNetworks/vmssvnet746670/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\"}}]}}]},\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"CustomScriptForLinux\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://stg39420054.blob.core.windows.net/scripts/install_apache.sh\"]}\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": \"70dce7df-cc2b-4381-a8d7-92f0b0b8dbe3\"\r\n }\r\n}", + "x-ms-client-request-id" : "7276f779-d7e5-460f-a6b7-d36928ce13ec", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg55520/providers/Microsoft.Compute/virtualMachineScaleSets/vmss93850?api-version=2019-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg90053/providers/Microsoft.Compute/virtualMachineScaleSets/vmss59749?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "dcd15a98-283f-41c2-a8aa-9a9254eba658" }, "Response" : { - "date" : "Tue, 28 Jul 2020 08:08:38 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "2585", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "4471", + "x-ms-ratelimit-remaining-subscription-reads" : "11957", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "c6900624-1a07-4bff-9f29-7d0f060ef853", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMScaleSet3Min;196,Microsoft.Compute/GetVMScaleSet30Min;1296", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T080839Z:c6900624-1a07-4bff-9f29-7d0f060ef853", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "bce269ca-2144-4efd-9743-84b95976bbdb", - "Body" : "{\r\n \"name\": \"vmss93850\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg55520/providers/Microsoft.Compute/virtualMachineScaleSets/vmss93850\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 3\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss93850-vm\",\r\n \"adminUsername\": \"jvuser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"vhdContainers\": [\r\n \"https://stg4243703852.blob.core.windows.net/vhds\",\r\n \"https://stg7bd53239b9.blob.core.windows.net/vhds\"\r\n ],\r\n \"name\": \"vmss93850-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg55520/providers/Microsoft.Network/virtualNetworks/vmssvnet636096/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\"}}]}}]},\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"CustomScriptForLinux\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://stg7bd53239b9.blob.core.windows.net/scripts/install_apache.sh\"]}\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": \"90f162cc-152b-4d0d-8387-ff6daed77e35\"\r\n }\r\n}" - } + "Date" : "Wed, 02 Sep 2020 09:39:30 GMT", + "x-ms-correlation-request-id" : "83cc2a6a-8dfe-468d-a22b-2e2e04e9740c", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMScaleSet3Min;193,Microsoft.Compute/GetVMScaleSet30Min;1293", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200902T093930Z:83cc2a6a-8dfe-468d-a22b-2e2e04e9740c", + "Expires" : "-1", + "Content-Length" : "2579", + "x-ms-request-id" : "49559694-a9db-4277-853d-75384d9ac442", + "Body" : "{\r\n \"name\": \"vmss59749\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg90053/providers/Microsoft.Compute/virtualMachineScaleSets/vmss59749\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 3\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss59749-vm\",\r\n \"adminUsername\": \"jvuser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"vhdContainers\": [\r\n \"https://stg41186ec6.blob.core.windows.net/vhds\",\r\n \"https://stg39420054.blob.core.windows.net/vhds\"\r\n ],\r\n \"name\": \"vmss59749-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg90053/providers/Microsoft.Network/virtualNetworks/vmssvnet746670/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\"}}]}}]},\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"CustomScriptForLinux\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"settings\": {\"fileUris\":[\"https://stg39420054.blob.core.windows.net/scripts/install_apache.sh\"]}\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": \"70dce7df-cc2b-4381-a8d7-92f0b0b8dbe3\"\r\n }\r\n}", + "x-ms-client-request-id" : "dcd15a98-283f-41c2-a8aa-9a9254eba658", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg55520?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg90053?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "3f16246d-02da-4d19-93ac-fe4f38e308b7", "Content-Type" : "application/json" }, "Response" : { - "date" : "Tue, 28 Jul 2020 08:08:41 GMT", - "content-length" : "0", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14975", - "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-deletes" : "14996", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a30d0e12-d43a-4f24-9a91-3e1ceab190c6", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T080841Z:a30d0e12-d43a-4f24-9a91-3e1ceab190c6", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc1NTUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "a30d0e12-d43a-4f24-9a91-3e1ceab190c6", - "Body" : "" - } + "Date" : "Wed, 02 Sep 2020 09:39:33 GMT", + "x-ms-correlation-request-id" : "70a7ef85-b21b-46e5-9fa5-be0dc34b29c8", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200902T093933Z:70a7ef85-b21b-46e5-9fa5-be0dc34b29c8", + "Expires" : "-1", + "Content-Length" : "0", + "x-ms-request-id" : "70a7ef85-b21b-46e5-9fa5-be0dc34b29c8", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MDA1My1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc1NTUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MDA1My1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "ce543dd1-c329-4ace-bdd4-2f07df4e3a9d" }, "Response" : { - "date" : "Tue, 28 Jul 2020 08:08:56 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "3460", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "11956", "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "1f8b2bce-80ca-4c49-9da1-f4e22f7eded8", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T080857Z:1f8b2bce-80ca-4c49-9da1-f4e22f7eded8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc1NTUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "1f8b2bce-80ca-4c49-9da1-f4e22f7eded8", - "Body" : "" - } + "Date" : "Wed, 02 Sep 2020 09:39:49 GMT", + "x-ms-correlation-request-id" : "1f0cfc1c-bc34-4d01-883d-4682b864bb88", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200902T093949Z:1f0cfc1c-bc34-4d01-883d-4682b864bb88", + "Expires" : "-1", + "Content-Length" : "0", + "x-ms-request-id" : "1f0cfc1c-bc34-4d01-883d-4682b864bb88", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MDA1My1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc1NTUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MDA1My1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "e8c3f3de-a733-45d5-8e16-c5255241ef69" }, "Response" : { - "date" : "Tue, 28 Jul 2020 08:09:12 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "3451", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "11957", "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "54791333-5446-461a-abf6-38ffea984e5b", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T080912Z:54791333-5446-461a-abf6-38ffea984e5b", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc1NTUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "54791333-5446-461a-abf6-38ffea984e5b", - "Body" : "" - } + "Date" : "Wed, 02 Sep 2020 09:40:04 GMT", + "x-ms-correlation-request-id" : "d9228643-d9f2-4ed5-9376-7f99ad18114f", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200902T094004Z:d9228643-d9f2-4ed5-9376-7f99ad18114f", + "Expires" : "-1", + "Content-Length" : "0", + "x-ms-request-id" : "d9228643-d9f2-4ed5-9376-7f99ad18114f", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MDA1My1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc1NTUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MDA1My1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "fd700e82-16da-41a4-990e-5501ebad8075" }, "Response" : { - "date" : "Tue, 28 Jul 2020 08:09:28 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "2725", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "11956", "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f498af70-a408-4696-aba1-8a54e5276569", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T080928Z:f498af70-a408-4696-aba1-8a54e5276569", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc1NTUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "f498af70-a408-4696-aba1-8a54e5276569", - "Body" : "" - } + "Date" : "Wed, 02 Sep 2020 09:40:19 GMT", + "x-ms-correlation-request-id" : "a34b4257-62ab-4cbb-a9cf-7a74106d1a79", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200902T094020Z:a34b4257-62ab-4cbb-a9cf-7a74106d1a79", + "Expires" : "-1", + "Content-Length" : "0", + "x-ms-request-id" : "a34b4257-62ab-4cbb-a9cf-7a74106d1a79", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MDA1My1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc1NTUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MDA1My1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "026d5271-beef-4436-a843-df3847cf52b9" }, "Response" : { - "date" : "Tue, 28 Jul 2020 08:09:44 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "4442", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "11955", "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0dad2964-92e3-46e8-9ef3-d1bcf9f74b18", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T080944Z:0dad2964-92e3-46e8-9ef3-d1bcf9f74b18", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc1NTUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "0dad2964-92e3-46e8-9ef3-d1bcf9f74b18", - "Body" : "" - } + "Date" : "Wed, 02 Sep 2020 09:40:35 GMT", + "x-ms-correlation-request-id" : "4f2ef149-1f6f-473a-a41a-4ec3f5148010", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200902T094035Z:4f2ef149-1f6f-473a-a41a-4ec3f5148010", + "Expires" : "-1", + "Content-Length" : "0", + "x-ms-request-id" : "4f2ef149-1f6f-473a-a41a-4ec3f5148010", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MDA1My1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc1NTUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MDA1My1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "7f29ea0b-f289-41af-86b6-440bf567ed75" }, "Response" : { - "date" : "Tue, 28 Jul 2020 08:09:59 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "2701", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "11954", "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "eef5289a-a3f1-43cc-a860-71a626816db1", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T080959Z:eef5289a-a3f1-43cc-a860-71a626816db1", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc1NTUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "eef5289a-a3f1-43cc-a860-71a626816db1", - "Body" : "" - } + "Date" : "Wed, 02 Sep 2020 09:40:50 GMT", + "x-ms-correlation-request-id" : "0d3abf9a-91d6-4da6-9bc7-8cebb95b1067", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200902T094051Z:0d3abf9a-91d6-4da6-9bc7-8cebb95b1067", + "Expires" : "-1", + "Content-Length" : "0", + "x-ms-request-id" : "0d3abf9a-91d6-4da6-9bc7-8cebb95b1067", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MDA1My1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc1NTUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MDA1My1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "24b86595-71c6-4d82-ae97-c73bf43977b2" }, "Response" : { - "date" : "Tue, 28 Jul 2020 08:10:14 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "4478", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "11953", "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b68d0d7f-21b7-45ae-aa84-28d3ff40721a", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T081015Z:b68d0d7f-21b7-45ae-aa84-28d3ff40721a", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc1NTUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "b68d0d7f-21b7-45ae-aa84-28d3ff40721a", - "Body" : "" - } + "Date" : "Wed, 02 Sep 2020 09:41:05 GMT", + "x-ms-correlation-request-id" : "91560073-57d5-4b60-ad53-3a26894f0184", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200902T094106Z:91560073-57d5-4b60-ad53-3a26894f0184", + "Expires" : "-1", + "Content-Length" : "0", + "x-ms-request-id" : "91560073-57d5-4b60-ad53-3a26894f0184", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MDA1My1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc1NTUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MDA1My1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "91c7d02d-33aa-4f43-8242-b8883c8b61ef" }, "Response" : { - "date" : "Tue, 28 Jul 2020 08:10:30 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "2745", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "11952", "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8676496c-1262-4b81-9de0-da522093ab8b", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T081031Z:8676496c-1262-4b81-9de0-da522093ab8b", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc1NTUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "8676496c-1262-4b81-9de0-da522093ab8b", - "Body" : "" - } + "Date" : "Wed, 02 Sep 2020 09:41:21 GMT", + "x-ms-correlation-request-id" : "e6aab104-8291-4f0f-82ac-4eb2653be6a3", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200902T094122Z:e6aab104-8291-4f0f-82ac-4eb2653be6a3", + "Expires" : "-1", + "Content-Length" : "0", + "x-ms-request-id" : "e6aab104-8291-4f0f-82ac-4eb2653be6a3", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MDA1My1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc1NTUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MDA1My1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "e3e0a17f-5106-4ca2-910c-626fd0e52ca2" }, "Response" : { - "date" : "Tue, 28 Jul 2020 08:10:46 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "6887", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "11951", "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "20e56b52-dde4-48a6-9c69-ef88cf172615", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T081046Z:20e56b52-dde4-48a6-9c69-ef88cf172615", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc1NTUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "20e56b52-dde4-48a6-9c69-ef88cf172615", - "Body" : "" - } + "Date" : "Wed, 02 Sep 2020 09:41:36 GMT", + "x-ms-correlation-request-id" : "74672578-70e7-4acc-9b6e-b683c0f5e54f", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200902T094137Z:74672578-70e7-4acc-9b6e-b683c0f5e54f", + "Expires" : "-1", + "Content-Length" : "0", + "x-ms-request-id" : "74672578-70e7-4acc-9b6e-b683c0f5e54f", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MDA1My1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc1NTUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MDA1My1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "f75ccafe-f808-468a-b9d0-a6bdfb712005" }, "Response" : { - "date" : "Tue, 28 Jul 2020 08:11:01 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "6880", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "11950", + "StatusCode" : "202", + "Date" : "Wed, 02 Sep 2020 09:41:52 GMT", + "x-ms-correlation-request-id" : "eb75c21a-0f62-47cd-acb7-e17dc74541eb", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200902T094152Z:eb75c21a-0f62-47cd-acb7-e17dc74541eb", + "Expires" : "-1", + "Content-Length" : "0", + "x-ms-request-id" : "eb75c21a-0f62-47cd-acb7-e17dc74541eb", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MDA1My1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MDA1My1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "d056cb2d-4dba-4240-8277-404c03b04a66" + }, + "Response" : { + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "11949", "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8dca99e9-894a-47a6-8f98-2e89f9fbef5a", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T081102Z:8dca99e9-894a-47a6-8f98-2e89f9fbef5a", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc1NTUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "8dca99e9-894a-47a6-8f98-2e89f9fbef5a", - "Body" : "" - } + "Date" : "Wed, 02 Sep 2020 09:42:07 GMT", + "x-ms-correlation-request-id" : "97f22efd-9bbc-486a-aaa0-f47514815fa9", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200902T094208Z:97f22efd-9bbc-486a-aaa0-f47514815fa9", + "Expires" : "-1", + "Content-Length" : "0", + "x-ms-request-id" : "97f22efd-9bbc-486a-aaa0-f47514815fa9", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MDA1My1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc1NTUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MDA1My1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "38cad920-6684-4633-b278-4270d793b64c" }, "Response" : { - "date" : "Tue, 28 Jul 2020 08:11:17 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "4431", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "11948", "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "fd0fe9f7-aa4c-449f-9131-873e7ebb2e53", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T081118Z:fd0fe9f7-aa4c-449f-9131-873e7ebb2e53", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc1NTUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "fd0fe9f7-aa4c-449f-9131-873e7ebb2e53", - "Body" : "" - } + "Date" : "Wed, 02 Sep 2020 09:42:23 GMT", + "x-ms-correlation-request-id" : "3b895851-2ad5-4605-8bf1-e41fde79473d", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200902T094223Z:3b895851-2ad5-4605-8bf1-e41fde79473d", + "Expires" : "-1", + "Content-Length" : "0", + "x-ms-request-id" : "3b895851-2ad5-4605-8bf1-e41fde79473d", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MDA1My1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc1NTUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MDA1My1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "a597bc1a-0120-4e1d-9446-8970ece24fe6" }, "Response" : { - "date" : "Tue, 28 Jul 2020 08:11:33 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "2693", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "11947", "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "d545f8d1-24ed-4294-ad02-45baddc1d2f7", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T081133Z:d545f8d1-24ed-4294-ad02-45baddc1d2f7", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc1NTUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "d545f8d1-24ed-4294-ad02-45baddc1d2f7", - "Body" : "" - } + "Date" : "Wed, 02 Sep 2020 09:42:39 GMT", + "x-ms-correlation-request-id" : "fdfd8ade-bed0-4589-b8ac-b80115de1200", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200902T094239Z:fdfd8ade-bed0-4589-b8ac-b80115de1200", + "Expires" : "-1", + "Content-Length" : "0", + "x-ms-request-id" : "fdfd8ade-bed0-4589-b8ac-b80115de1200", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MDA1My1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc1NTUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MDA1My1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "f01c406e-4d76-4dc7-86e4-6c2028aca0b2" }, "Response" : { - "date" : "Tue, 28 Jul 2020 08:11:48 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "2680", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "11946", "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "5888fb81-8344-4de4-820e-381ef81a139f", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T081149Z:5888fb81-8344-4de4-820e-381ef81a139f", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc1NTUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "5888fb81-8344-4de4-820e-381ef81a139f", - "Body" : "" - } + "Date" : "Wed, 02 Sep 2020 09:42:54 GMT", + "x-ms-correlation-request-id" : "aa69627e-ec24-41ae-82e5-cb409bfae5ed", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200902T094254Z:aa69627e-ec24-41ae-82e5-cb409bfae5ed", + "Expires" : "-1", + "Content-Length" : "0", + "x-ms-request-id" : "aa69627e-ec24-41ae-82e5-cb409bfae5ed", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MDA1My1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc1NTUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MDA1My1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "0ebcda7d-7ff8-4b72-82d9-93a97d01df12" }, "Response" : { - "date" : "Tue, 28 Jul 2020 08:12:04 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "4413", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "11945", "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8a1e1639-375c-4959-9f2a-335ff3137387", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T081204Z:8a1e1639-375c-4959-9f2a-335ff3137387", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc1NTUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "8a1e1639-375c-4959-9f2a-335ff3137387", - "Body" : "" - } + "Date" : "Wed, 02 Sep 2020 09:43:09 GMT", + "x-ms-correlation-request-id" : "5bff7249-a2e3-4129-b50b-7803a8d1d2ae", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200902T094310Z:5bff7249-a2e3-4129-b50b-7803a8d1d2ae", + "Expires" : "-1", + "Content-Length" : "0", + "x-ms-request-id" : "5bff7249-a2e3-4129-b50b-7803a8d1d2ae", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MDA1My1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc1NTUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MDA1My1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "ddd6442b-31a6-405a-bd9f-0feac8e3958b" }, "Response" : { - "date" : "Tue, 28 Jul 2020 08:12:20 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "2664", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "11944", "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "20f5066a-2ebc-4cd1-b2e3-c305f84c5312", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T081220Z:20f5066a-2ebc-4cd1-b2e3-c305f84c5312", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc1NTUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "20f5066a-2ebc-4cd1-b2e3-c305f84c5312", - "Body" : "" - } + "Date" : "Wed, 02 Sep 2020 09:43:25 GMT", + "x-ms-correlation-request-id" : "a6b65353-d740-4ee9-8ca0-9476b200e0e8", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200902T094325Z:a6b65353-d740-4ee9-8ca0-9476b200e0e8", + "Expires" : "-1", + "Content-Length" : "0", + "x-ms-request-id" : "a6b65353-d740-4ee9-8ca0-9476b200e0e8", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MDA1My1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc1NTUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MDA1My1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "63e8acc0-d03e-449c-b72e-4f8d6ddf8c8c" }, "Response" : { - "date" : "Tue, 28 Jul 2020 08:12:35 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "3395", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "11943", "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ecaea40b-8984-4620-9636-14a8667b4db6", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T081236Z:ecaea40b-8984-4620-9636-14a8667b4db6", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc1NTUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "ecaea40b-8984-4620-9636-14a8667b4db6", - "Body" : "" - } + "Date" : "Wed, 02 Sep 2020 09:43:40 GMT", + "x-ms-correlation-request-id" : "b7b3a30e-16eb-4f5f-aa53-c846602696fc", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200902T094340Z:b7b3a30e-16eb-4f5f-aa53-c846602696fc", + "Expires" : "-1", + "Content-Length" : "0", + "x-ms-request-id" : "b7b3a30e-16eb-4f5f-aa53-c846602696fc", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MDA1My1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc1NTUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MDA1My1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "36c25341-1444-4e93-9b9d-825c5e64e679" }, "Response" : { - "date" : "Tue, 28 Jul 2020 08:12:51 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "4385", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "11942", "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "59dfc36f-202b-4650-b8f2-1c8d32f8a059", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T081251Z:59dfc36f-202b-4650-b8f2-1c8d32f8a059", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc1NTUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "59dfc36f-202b-4650-b8f2-1c8d32f8a059", - "Body" : "" - } + "Date" : "Wed, 02 Sep 2020 09:43:56 GMT", + "x-ms-correlation-request-id" : "a172f15b-a166-43a1-80b7-75877c2a5a59", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200902T094356Z:a172f15b-a166-43a1-80b7-75877c2a5a59", + "Expires" : "-1", + "Content-Length" : "0", + "x-ms-request-id" : "a172f15b-a166-43a1-80b7-75877c2a5a59", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MDA1My1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc1NTUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MDA1My1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "3ff4f7e4-02b1-49f8-aed8-84fa6d113cb9" }, "Response" : { - "date" : "Tue, 28 Jul 2020 08:13:07 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "6811", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "11941", "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "334ddc8e-15ef-40ba-a9d1-13039d7e4cb3", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T081307Z:334ddc8e-15ef-40ba-a9d1-13039d7e4cb3", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc1NTUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "334ddc8e-15ef-40ba-a9d1-13039d7e4cb3", - "Body" : "" - } + "Date" : "Wed, 02 Sep 2020 09:44:11 GMT", + "x-ms-correlation-request-id" : "04332533-cb5e-43c2-9a4d-11395662e0cf", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200902T094412Z:04332533-cb5e-43c2-9a4d-11395662e0cf", + "Expires" : "-1", + "Content-Length" : "0", + "x-ms-request-id" : "04332533-cb5e-43c2-9a4d-11395662e0cf", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MDA1My1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc1NTUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MDA1My1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "659aafd8-03a4-4d4e-89f0-2240b73ce2df" }, "Response" : { - "date" : "Tue, 28 Jul 2020 08:13:23 GMT", - "content-length" : "0", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "2599", + "x-ms-ratelimit-remaining-subscription-reads" : "11940", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "bd7ac00c-6501-4333-8b3f-3601eac0f311", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T081323Z:bd7ac00c-6501-4333-8b3f-3601eac0f311", - "cache-control" : "no-cache", - "x-ms-request-id" : "bd7ac00c-6501-4333-8b3f-3601eac0f311", - "Body" : "" - } + "Date" : "Wed, 02 Sep 2020 09:44:27 GMT", + "x-ms-correlation-request-id" : "32740b33-51dc-419a-8d19-b826d2652689", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200902T094427Z:32740b33-51dc-419a-8d19-b826d2652689", + "Expires" : "-1", + "Content-Length" : "0", + "x-ms-request-id" : "32740b33-51dc-419a-8d19-b826d2652689" + }, + "Exception" : null } ], - "variables" : [ "javacsmrg55520", "vmss93850", "stg7bd53239b9", "vmssvnet636096", "stg4243703852" ] + "variables" : [ "javacsmrg90053", "vmss59749", "stg39420054", "vmssvnet746670", "stg41186ec6" ] } \ No newline at end of file From 11fbb4816346656c13f62f91bd1f0cec91d87206 Mon Sep 17 00:00:00 2001 From: xccc-msft Date: Wed, 2 Sep 2020 18:15:52 +0800 Subject: [PATCH 2/2] remove azure-storage from external dependency list --- eng/versioning/external_dependencies.txt | 3 --- 1 file changed, 3 deletions(-) diff --git a/eng/versioning/external_dependencies.txt b/eng/versioning/external_dependencies.txt index 2ba2cc5e0839b..3711b2c9d11cb 100644 --- a/eng/versioning/external_dependencies.txt +++ b/eng/versioning/external_dependencies.txt @@ -310,9 +310,6 @@ media_com.microsoft.azure:adal4j;1.2.0 # sdk\resourcemanager\azure-resourcemanager-compute\pom.xml resourcemanager_com.jcraft:jsch;0.1.55 -# sdk\resourcemanager\azure-resourcemanager-compute\pom.xml -resourcemanager_com.microsoft.azure:azure-storage;6.1.0 - # sdk\storage\azure-storage-blob-cryptography\pom.xml storage_com.microsoft.azure:azure-storage;8.4.0