diff --git a/sdk/resourcemanager/azure-resourcemanager-compute/CHANGELOG.md b/sdk/resourcemanager/azure-resourcemanager-compute/CHANGELOG.md index cd1131780c46..2d73a6c5d454 100644 --- a/sdk/resourcemanager/azure-resourcemanager-compute/CHANGELOG.md +++ b/sdk/resourcemanager/azure-resourcemanager-compute/CHANGELOG.md @@ -2,6 +2,10 @@ ## 2.26.0-beta.1 (Unreleased) +### Features Added + +- Supported `timeCreated()` in `VirtualMachineScaleSetVM` and `VirtualMachine`. + ### Breaking Changes - Changed type from `ApiEntityReference` to `DiskRestorePointAttributes` of `diskRestorePoint` property in `RestorePointSourceVMDataDisk` and `RestorePointSourceVmosDisk` class. diff --git a/sdk/resourcemanager/azure-resourcemanager-compute/src/main/java/com/azure/resourcemanager/compute/fluent/models/VirtualMachineScaleSetVMInner.java b/sdk/resourcemanager/azure-resourcemanager-compute/src/main/java/com/azure/resourcemanager/compute/fluent/models/VirtualMachineScaleSetVMInner.java index db7db8389aa2..83381fcd2452 100644 --- a/sdk/resourcemanager/azure-resourcemanager-compute/src/main/java/com/azure/resourcemanager/compute/fluent/models/VirtualMachineScaleSetVMInner.java +++ b/sdk/resourcemanager/azure-resourcemanager-compute/src/main/java/com/azure/resourcemanager/compute/fluent/models/VirtualMachineScaleSetVMInner.java @@ -20,6 +20,7 @@ import com.azure.resourcemanager.compute.models.VirtualMachineScaleSetVMNetworkProfileConfiguration; import com.azure.resourcemanager.compute.models.VirtualMachineScaleSetVMProtectionPolicy; import com.fasterxml.jackson.annotation.JsonProperty; +import java.time.OffsetDateTime; import java.util.List; import java.util.Map; @@ -542,6 +543,15 @@ public VirtualMachineScaleSetVMInner withUserData(String userData) { return this; } + /** + * Get the timeCreated property: Specifies the time at which the Virtual Machine resource was created. + * + * @return the timeCreated value. + */ + public OffsetDateTime timeCreated() { + return this.innerProperties() == null ? null : this.innerProperties().timeCreated(); + } + /** * Validates the instance. * diff --git a/sdk/resourcemanager/azure-resourcemanager-compute/src/main/java/com/azure/resourcemanager/compute/fluent/models/VirtualMachineScaleSetVMPropertiesInner.java b/sdk/resourcemanager/azure-resourcemanager-compute/src/main/java/com/azure/resourcemanager/compute/fluent/models/VirtualMachineScaleSetVMPropertiesInner.java index 4afd272e278d..2c7b9f6d43c8 100644 --- a/sdk/resourcemanager/azure-resourcemanager-compute/src/main/java/com/azure/resourcemanager/compute/fluent/models/VirtualMachineScaleSetVMPropertiesInner.java +++ b/sdk/resourcemanager/azure-resourcemanager-compute/src/main/java/com/azure/resourcemanager/compute/fluent/models/VirtualMachineScaleSetVMPropertiesInner.java @@ -16,6 +16,7 @@ import com.azure.resourcemanager.compute.models.VirtualMachineScaleSetVMNetworkProfileConfiguration; import com.azure.resourcemanager.compute.models.VirtualMachineScaleSetVMProtectionPolicy; import com.fasterxml.jackson.annotation.JsonProperty; +import java.time.OffsetDateTime; /** Describes the properties of a virtual machine scale set virtual machine. */ @Fluent @@ -139,6 +140,12 @@ public final class VirtualMachineScaleSetVMPropertiesInner { @JsonProperty(value = "userData") private String userData; + /* + * Specifies the time at which the Virtual Machine resource was created. + */ + @JsonProperty(value = "timeCreated", access = JsonProperty.Access.WRITE_ONLY) + private OffsetDateTime timeCreated; + /** Creates an instance of VirtualMachineScaleSetVMPropertiesInner class. */ public VirtualMachineScaleSetVMPropertiesInner() { } @@ -468,6 +475,15 @@ public VirtualMachineScaleSetVMPropertiesInner withUserData(String userData) { return this; } + /** + * Get the timeCreated property: Specifies the time at which the Virtual Machine resource was created. + * + * @return the timeCreated value. + */ + public OffsetDateTime timeCreated() { + return this.timeCreated; + } + /** * Validates the instance. * diff --git a/sdk/resourcemanager/azure-resourcemanager-compute/src/main/java/com/azure/resourcemanager/compute/implementation/VirtualMachineImpl.java b/sdk/resourcemanager/azure-resourcemanager-compute/src/main/java/com/azure/resourcemanager/compute/implementation/VirtualMachineImpl.java index f9398a51ab83..e44612315622 100644 --- a/sdk/resourcemanager/azure-resourcemanager-compute/src/main/java/com/azure/resourcemanager/compute/implementation/VirtualMachineImpl.java +++ b/sdk/resourcemanager/azure-resourcemanager-compute/src/main/java/com/azure/resourcemanager/compute/implementation/VirtualMachineImpl.java @@ -108,6 +108,7 @@ import java.io.IOException; import java.net.MalformedURLException; import java.net.URL; +import java.time.OffsetDateTime; import java.util.ArrayList; import java.util.Collections; import java.util.HashMap; @@ -1992,6 +1993,11 @@ public boolean isVTpmEnabled() { && ResourceManagerUtils.toPrimitiveBoolean(this.innerModel().securityProfile().uefiSettings().vTpmEnabled()); } + @Override + public OffsetDateTime timeCreated() { + return innerModel().timeCreated(); + } + @Override public VirtualMachinePriorityTypes priority() { return this.innerModel().priority(); diff --git a/sdk/resourcemanager/azure-resourcemanager-compute/src/main/java/com/azure/resourcemanager/compute/implementation/VirtualMachineScaleSetVMImpl.java b/sdk/resourcemanager/azure-resourcemanager-compute/src/main/java/com/azure/resourcemanager/compute/implementation/VirtualMachineScaleSetVMImpl.java index 5df8203c86d6..b8ebefe42927 100644 --- a/sdk/resourcemanager/azure-resourcemanager-compute/src/main/java/com/azure/resourcemanager/compute/implementation/VirtualMachineScaleSetVMImpl.java +++ b/sdk/resourcemanager/azure-resourcemanager-compute/src/main/java/com/azure/resourcemanager/compute/implementation/VirtualMachineScaleSetVMImpl.java @@ -47,6 +47,7 @@ import com.azure.resourcemanager.resources.fluentcore.utils.ResourceManagerUtils; import reactor.core.publisher.Mono; +import java.time.OffsetDateTime; import java.util.ArrayList; import java.util.Collections; import java.util.HashMap; @@ -591,6 +592,11 @@ public VirtualMachineScaleSetVMNetworkProfileConfiguration networkProfileConfigu return this.innerModel().networkProfileConfiguration(); } + @Override + public OffsetDateTime timeCreated() { + return this.innerModel().timeCreated(); + } + private void clearCachedRelatedResources() { this.virtualMachineInstanceView = null; } diff --git a/sdk/resourcemanager/azure-resourcemanager-compute/src/main/java/com/azure/resourcemanager/compute/models/VirtualMachine.java b/sdk/resourcemanager/azure-resourcemanager-compute/src/main/java/com/azure/resourcemanager/compute/models/VirtualMachine.java index 730ddea760fc..07c7d8413a9d 100644 --- a/sdk/resourcemanager/azure-resourcemanager-compute/src/main/java/com/azure/resourcemanager/compute/models/VirtualMachine.java +++ b/sdk/resourcemanager/azure-resourcemanager-compute/src/main/java/com/azure/resourcemanager/compute/models/VirtualMachine.java @@ -25,6 +25,7 @@ import com.azure.resourcemanager.storage.models.StorageAccount; import reactor.core.publisher.Mono; +import java.time.OffsetDateTime; import java.util.List; import java.util.Map; import java.util.Set; @@ -422,6 +423,9 @@ Mono runShellScriptAsync( /** @return whether vTPM is enabled on the virtual machine */ boolean isVTpmEnabled(); + /** @return the time at which the Virtual Machine resource was created */ + OffsetDateTime timeCreated(); + // Setters // diff --git a/sdk/resourcemanager/azure-resourcemanager-compute/src/main/java/com/azure/resourcemanager/compute/models/VirtualMachineScaleSetVM.java b/sdk/resourcemanager/azure-resourcemanager-compute/src/main/java/com/azure/resourcemanager/compute/models/VirtualMachineScaleSetVM.java index a0858776e0f1..57d8068811f0 100644 --- a/sdk/resourcemanager/azure-resourcemanager-compute/src/main/java/com/azure/resourcemanager/compute/models/VirtualMachineScaleSetVM.java +++ b/sdk/resourcemanager/azure-resourcemanager-compute/src/main/java/com/azure/resourcemanager/compute/models/VirtualMachineScaleSetVM.java @@ -14,6 +14,8 @@ import com.azure.resourcemanager.resources.fluentcore.model.HasInnerModel; import com.azure.resourcemanager.resources.fluentcore.model.Refreshable; import com.azure.resourcemanager.resources.fluentcore.model.Updatable; + +import java.time.OffsetDateTime; import java.util.List; import java.util.Map; import reactor.core.publisher.Mono; @@ -291,6 +293,9 @@ public interface VirtualMachineScaleSetVM /** @return The network profile config for the vm. */ VirtualMachineScaleSetVMNetworkProfileConfiguration networkProfileConfiguration(); + /** @return the time at which the Virtual Machine resource was created */ + OffsetDateTime timeCreated(); + /** The template for an update operation, containing all the settings that can be modified. */ interface Update extends Appliable { /** diff --git a/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/VirtualMachineOperationsTests.java b/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/VirtualMachineOperationsTests.java index 3042c727e93d..ce0630cb02fb 100644 --- a/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/VirtualMachineOperationsTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/VirtualMachineOperationsTests.java @@ -205,6 +205,7 @@ public void canCreateVirtualMachine() throws Exception { Assertions.assertNotNull(foundVM); Assertions.assertEquals(region, foundVM.region()); Assertions.assertEquals("Windows_Server", foundVM.licenseType()); + Assertions.assertNotNull(foundVM.timeCreated()); // Fetch instance view PowerState powerState = foundVM.powerState(); 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 021498b641b3..ee3749f802a1 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 @@ -1269,6 +1269,7 @@ public void canListInstancesIncludingInstanceView() { VirtualMachineScaleSet vmss = computeManager.virtualMachineScaleSets().getByResourceGroup(rgName, vmssName); List vmInstances = vmss.virtualMachines().list(null, VirtualMachineScaleSetVMExpandType.INSTANCE_VIEW).stream().collect(Collectors.toList()); Assertions.assertEquals(3, vmInstances.size()); + Assertions.assertTrue(vmInstances.stream().allMatch(vm -> vm.timeCreated() != null)); List powerStates = vmInstances.stream().map(VirtualMachineScaleSetVM::powerState).collect(Collectors.toList()); Assertions.assertEquals(Arrays.asList(PowerState.RUNNING, PowerState.RUNNING, PowerState.RUNNING), powerStates); @@ -1282,6 +1283,7 @@ public void canListInstancesIncludingInstanceView() { // check single VM VirtualMachineScaleSetVM vmInstance0 = vmss.virtualMachines().getInstance(firstInstanceId); Assertions.assertEquals(PowerState.DEALLOCATED, vmInstance0.powerState()); + Assertions.assertNotNull(vmInstance0.timeCreated()); } @Test diff --git a/sdk/resourcemanager/azure-resourcemanager-compute/src/test/resources/session-records/VirtualMachineOperationsTests.canCreateVirtualMachine.json b/sdk/resourcemanager/azure-resourcemanager-compute/src/test/resources/session-records/VirtualMachineOperationsTests.canCreateVirtualMachine.json index 86639fa8f180..8c8d8b527753 100644 --- a/sdk/resourcemanager/azure-resourcemanager-compute/src/test/resources/session-records/VirtualMachineOperationsTests.canCreateVirtualMachine.json +++ b/sdk/resourcemanager/azure-resourcemanager-compute/src/test/resources/session-records/VirtualMachineOperationsTests.canCreateVirtualMachine.json @@ -1,10 +1,10 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg92054?api-version=2021-01-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg17837?api-version=2021-01-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.23.0-beta.1 (17.0.3.1; Mac OS X; 11.7.2)", - "x-ms-client-request-id" : "01bbaa04-b882-4cb8-bd63-c9ecd688bc9e", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.3)", + "x-ms-client-request-id" : "d9fa2b9e-3fa2-43d1-bd7e-5001ab6ee484", "Content-Type" : "application/json" }, "Response" : { @@ -13,199 +13,224 @@ "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "201", - "Date" : "Fri, 13 Jan 2023 02:22:34 GMT", - "x-ms-correlation-request-id" : "bd6b2281-a541-4005-b825-de0cedc5a856", + "Date" : "Thu, 20 Apr 2023 03:46:27 GMT", + "x-ms-correlation-request-id" : "51d4b9c6-76d1-4723-a9f3-406740f17ffc", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20230113T022234Z:bd6b2281-a541-4005-b825-de0cedc5a856", + "x-ms-routing-request-id" : "JAPANEAST:20230420T034627Z:51d4b9c6-76d1-4723-a9f3-406740f17ffc", "Expires" : "-1", "Content-Length" : "225", - "x-ms-request-id" : "bd6b2281-a541-4005-b825-de0cedc5a856", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92054\",\"name\":\"javacsmrg92054\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"eastus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "x-ms-request-id" : "51d4b9c6-76d1-4723-a9f3-406740f17ffc", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg17837\",\"name\":\"javacsmrg17837\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"eastus\",\"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/javacsmrg92054/providers/Microsoft.Storage/storageAccounts/stg17102b329b79f?api-version=2022-09-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg17837/providers/Microsoft.Network/virtualNetworks/vnet435673e570?api-version=2022-09-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.storage/2.23.0-beta.1 (17.0.3.1; Mac OS X; 11.7.2)", - "x-ms-client-request-id" : "772a698b-5e52-4eec-8b1e-f7c2d84e556e", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.3)", + "x-ms-client-request-id" : "5c4ce634-dc00-448a-8a03-d3e59ee84593", "Content-Type" : "application/json" }, "Response" : { - "Server" : "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", + "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", "Pragma" : "no-cache", - "StatusCode" : "202", - "Date" : "Fri, 13 Jan 2023 02:22:41 GMT", - "x-ms-correlation-request-id" : "dbe288e2-d810-4fcc-b557-bda13e518c29", + "Azure-AsyncNotification" : "Enabled", + "StatusCode" : "201", + "Date" : "Thu, 20 Apr 2023 03:46:33 GMT", + "x-ms-correlation-request-id" : "961e7ff7-23da-4b81-b7f8-33c1cae84924", + "x-ms-arm-service-request-id" : "83b6676c-d12a-41a0-975d-37965105ea1e", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Retry-After" : "0", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20230113T022241Z:dbe288e2-d810-4fcc-b557-bda13e518c29", + "x-ms-routing-request-id" : "JAPANEAST:20230420T034633Z:961e7ff7-23da-4b81-b7f8-33c1cae84924", "Expires" : "-1", - "Content-Length" : "0", - "x-ms-request-id" : "42286d45-4396-4cf1-ae2e-270777afede6", - "Body" : "", - "x-ms-client-request-id" : "772a698b-5e52-4eec-8b1e-f7c2d84e556e", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus/asyncoperations/42286d45-4396-4cf1-ae2e-270777afede6?monitor=true&api-version=2022-09-01", - "Content-Type" : "text/plain; charset=utf-8" + "Content-Length" : "1309", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/18633db1-c7af-4862-9edf-102c1f3081d2?api-version=2022-09-01", + "x-ms-request-id" : "18633db1-c7af-4862-9edf-102c1f3081d2", + "Body" : "{\r\n \"name\": \"vnet435673e570\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg17837/providers/Microsoft.Network/virtualNetworks/vnet435673e570\",\r\n \"etag\": \"W/\\\"17910c0d-6a21-470a-acdc-9ee877d8712b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"35f5b127-1017-4703-a75a-b2fd0279765f\",\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/javacsmrg17837/providers/Microsoft.Network/virtualNetworks/vnet435673e570/subnets/subnet1\",\r\n \"etag\": \"W/\\\"17910c0d-6a21-470a-acdc-9ee877d8712b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\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 }\r\n}", + "x-ms-client-request-id" : "5c4ce634-dc00-448a-8a03-d3e59ee84593", + "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92054/providers/Microsoft.Network/virtualNetworks/vnet168081fb4c?api-version=2022-09-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg17837/providers/Microsoft.Storage/storageAccounts/stg86413e8913f42?api-version=2022-09-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.23.0-beta.1 (17.0.3.1; Mac OS X; 11.7.2)", - "x-ms-client-request-id" : "5e3adaf8-8e81-4981-b9e0-499e768ffec8", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.storage/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.3)", + "x-ms-client-request-id" : "5314e353-041b-49ce-a171-a5b9987d93e1", "Content-Type" : "application/json" }, "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.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" : "1199", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "201", - "Date" : "Fri, 13 Jan 2023 02:22:43 GMT", - "x-ms-correlation-request-id" : "abdf0838-26ef-45ec-bc2a-7abbc514e894", - "x-ms-arm-service-request-id" : "e2f3cb6b-4955-4b42-9af0-091784501ba5", + "StatusCode" : "202", + "Date" : "Thu, 20 Apr 2023 03:46:33 GMT", + "x-ms-correlation-request-id" : "a59f2b92-3711-4599-a262-3eb7d7c50a02", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Retry-After" : "0", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20230113T022244Z:abdf0838-26ef-45ec-bc2a-7abbc514e894", + "x-ms-routing-request-id" : "JAPANEAST:20230420T034633Z:a59f2b92-3711-4599-a262-3eb7d7c50a02", "Expires" : "-1", - "Content-Length" : "1309", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/81e855d6-e6eb-4415-ad18-5924d66ad1fe?api-version=2022-09-01", - "x-ms-request-id" : "81e855d6-e6eb-4415-ad18-5924d66ad1fe", - "Body" : "{\r\n \"name\": \"vnet168081fb4c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92054/providers/Microsoft.Network/virtualNetworks/vnet168081fb4c\",\r\n \"etag\": \"W/\\\"ece002b0-509f-45e1-a4db-3778cc9bf60c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"5c24a58d-ee4e-478a-b5ff-532fa129f822\",\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/javacsmrg92054/providers/Microsoft.Network/virtualNetworks/vnet168081fb4c/subnets/subnet1\",\r\n \"etag\": \"W/\\\"ece002b0-509f-45e1-a4db-3778cc9bf60c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\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 }\r\n}", - "x-ms-client-request-id" : "5e3adaf8-8e81-4981-b9e0-499e768ffec8", - "Content-Type" : "application/json; charset=utf-8" + "Content-Length" : "0", + "x-ms-request-id" : "f1d73d8d-a58c-406f-bcd7-2617498e651f", + "Body" : "", + "x-ms-client-request-id" : "5314e353-041b-49ce-a171-a5b9987d93e1", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus/asyncoperations/f1d73d8d-a58c-406f-bcd7-2617498e651f?monitor=true&api-version=2022-09-01", + "Content-Type" : "text/plain; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/81e855d6-e6eb-4415-ad18-5924d66ad1fe?api-version=2022-09-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/18633db1-c7af-4862-9edf-102c1f3081d2?api-version=2022-09-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.23.0-beta.1 (17.0.3.1; Mac OS X; 11.7.2)", - "x-ms-client-request-id" : "409a28dd-8840-43b8-bb70-2cac24092ad8" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.3)", + "x-ms-client-request-id" : "538432ae-b986-4cb4-9783-4b7cef44602f" }, "Response" : { "Server" : "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" : "11999", + "x-ms-ratelimit-remaining-subscription-reads" : "11983", "StatusCode" : "200", - "x-ms-correlation-request-id" : "c3879fd9-2540-4721-9fbd-83325d94808b", - "Date" : "Fri, 13 Jan 2023 02:22:47 GMT", - "x-ms-arm-service-request-id" : "30e0fe2e-c681-4819-b8f5-c849911fa651", + "x-ms-correlation-request-id" : "a8efdce5-fe9f-4578-82af-815bfff14b32", + "Date" : "Thu, 20 Apr 2023 03:46:37 GMT", + "x-ms-arm-service-request-id" : "ab0137c4-5753-40f1-880b-0dd01d68ba98", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20230113T022247Z:c3879fd9-2540-4721-9fbd-83325d94808b", + "x-ms-routing-request-id" : "JAPANEAST:20230420T034637Z:a8efdce5-fe9f-4578-82af-815bfff14b32", "Expires" : "-1", "Content-Length" : "29", - "x-ms-request-id" : "c0b2304d-6067-456a-b945-ead802d2917a", + "x-ms-request-id" : "baf70b12-3b72-468d-a53d-7db32a4162f9", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "409a28dd-8840-43b8-bb70-2cac24092ad8", + "x-ms-client-request-id" : "538432ae-b986-4cb4-9783-4b7cef44602f", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92054/providers/Microsoft.Network/virtualNetworks/vnet168081fb4c?api-version=2022-09-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg17837/providers/Microsoft.Network/virtualNetworks/vnet435673e570?api-version=2022-09-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.23.0-beta.1 (17.0.3.1; Mac OS X; 11.7.2)", - "x-ms-client-request-id" : "1df63cd9-c774-4578-b6f2-c00c0302aa86" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.3)", + "x-ms-client-request-id" : "44e00b9d-27b5-4fc1-8537-44f5e3ff5134" + }, + "Response" : { + "X-Content-Type-Options" : "nosniff", + "Connection" : "close", + "Pragma" : "no-cache", + "StatusCode" : "429", + "x-ms-correlation-request-id" : "f72448bc-6d38-41da-b94f-e0b15a96aa84", + "Date" : "Thu, 20 Apr 2023 03:46:37 GMT", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "Retry-After" : "0", + "x-ms-routing-request-id" : "JAPANEAST:20230420T034637Z:f72448bc-6d38-41da-b94f-e0b15a96aa84", + "Expires" : "-1", + "Content-Length" : "303", + "x-ms-request-id" : "f72448bc-6d38-41da-b94f-e0b15a96aa84", + "Body" : "{\"error\":{\"code\":\"SubscriptionRequestsThrottled\",\"message\":\"Number of requests for subscription '00000000-0000-0000-0000-000000000000' and operation 'GET/SUBSCRIPTIONS/RESOURCEGROUPS/PROVIDERS/MICROSOFT.NETWORK/VIRTUALNETWORKS/' exceeded the backend storage limit. Please try again after '6' seconds.\"}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg17837/providers/Microsoft.Network/virtualNetworks/vnet435673e570?api-version=2022-09-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.3)", + "x-ms-client-request-id" : "44e00b9d-27b5-4fc1-8537-44f5e3ff5134" }, "Response" : { "Server" : "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" : "11991", + "x-ms-ratelimit-remaining-subscription-reads" : "11982", "StatusCode" : "200", - "x-ms-correlation-request-id" : "ff950ea9-54fc-407b-a7be-fafc20dd1b6b", - "Date" : "Fri, 13 Jan 2023 02:22:47 GMT", - "x-ms-arm-service-request-id" : "fa6c475f-a9b6-417d-9994-961a083d5d00", + "x-ms-correlation-request-id" : "fd7b3123-6bc0-4731-97a3-f1409ba0f816", + "Date" : "Thu, 20 Apr 2023 03:46:44 GMT", + "x-ms-arm-service-request-id" : "f2b30f5b-4798-47b9-8bbe-70e0660d71a2", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"cf1449dc-d8fb-4a50-899d-66ee841d654f\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20230113T022248Z:ff950ea9-54fc-407b-a7be-fafc20dd1b6b", + "ETag" : "W/\"e118ed6f-277c-4dc7-b4a8-cfb99d2f7c72\"", + "x-ms-routing-request-id" : "JAPANEAST:20230420T034644Z:fd7b3123-6bc0-4731-97a3-f1409ba0f816", "Expires" : "-1", "Content-Length" : "1311", - "x-ms-request-id" : "46707f0b-07b4-4918-8b69-6aa942542250", - "Body" : "{\r\n \"name\": \"vnet168081fb4c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92054/providers/Microsoft.Network/virtualNetworks/vnet168081fb4c\",\r\n \"etag\": \"W/\\\"cf1449dc-d8fb-4a50-899d-66ee841d654f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5c24a58d-ee4e-478a-b5ff-532fa129f822\",\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/javacsmrg92054/providers/Microsoft.Network/virtualNetworks/vnet168081fb4c/subnets/subnet1\",\r\n \"etag\": \"W/\\\"cf1449dc-d8fb-4a50-899d-66ee841d654f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\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 }\r\n}", - "x-ms-client-request-id" : "1df63cd9-c774-4578-b6f2-c00c0302aa86", + "x-ms-request-id" : "e5e7dc39-0d09-4ad9-9b31-61d504f21958", + "Body" : "{\r\n \"name\": \"vnet435673e570\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg17837/providers/Microsoft.Network/virtualNetworks/vnet435673e570\",\r\n \"etag\": \"W/\\\"e118ed6f-277c-4dc7-b4a8-cfb99d2f7c72\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"35f5b127-1017-4703-a75a-b2fd0279765f\",\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/javacsmrg17837/providers/Microsoft.Network/virtualNetworks/vnet435673e570/subnets/subnet1\",\r\n \"etag\": \"W/\\\"e118ed6f-277c-4dc7-b4a8-cfb99d2f7c72\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\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 }\r\n}", + "x-ms-client-request-id" : "44e00b9d-27b5-4fc1-8537-44f5e3ff5134", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92054/providers/Microsoft.Network/networkInterfaces/nic70036ae6d30?api-version=2022-09-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg17837/providers/Microsoft.Network/networkInterfaces/nic63035a5a78a?api-version=2022-09-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.23.0-beta.1 (17.0.3.1; Mac OS X; 11.7.2)", - "x-ms-client-request-id" : "07c2b4c7-1237-4b68-9d39-5711cd18c042", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.3)", + "x-ms-client-request-id" : "1c310352-0e00-4048-b984-333a7b552ab3", "Content-Type" : "application/json" }, "Response" : { "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", + "x-ms-ratelimit-remaining-subscription-writes" : "1195", "Pragma" : "no-cache", "retry-after" : "0", "Azure-AsyncNotification" : "Enabled", "StatusCode" : "201", - "Date" : "Fri, 13 Jan 2023 02:22:51 GMT", - "x-ms-correlation-request-id" : "44fbb1d5-8f1b-468b-9e98-798d6552f972", - "x-ms-arm-service-request-id" : "45a04803-668e-44f8-bd67-8d71b49c5494", + "Date" : "Thu, 20 Apr 2023 03:46:46 GMT", + "x-ms-correlation-request-id" : "0b0f2456-4e32-48d3-ab70-260b4036c4e2", + "x-ms-arm-service-request-id" : "964a9366-a2e3-4910-b558-f10c766ab44e", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20230113T022251Z:44fbb1d5-8f1b-468b-9e98-798d6552f972", + "x-ms-routing-request-id" : "JAPANEAST:20230420T034646Z:0b0f2456-4e32-48d3-ab70-260b4036c4e2", "Expires" : "-1", "Content-Length" : "1792", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/2af7d701-537e-48cf-808e-d1ac5aa8cc8b?api-version=2022-09-01", - "x-ms-request-id" : "2af7d701-537e-48cf-808e-d1ac5aa8cc8b", - "Body" : "{\r\n \"name\": \"nic70036ae6d30\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92054/providers/Microsoft.Network/networkInterfaces/nic70036ae6d30\",\r\n \"etag\": \"W/\\\"6b6ae8a0-5fb5-4d2c-88cf-4d0cc888feb9\\\"\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5108a1ca-d917-4b54-a2ee-1b46a5162e47\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92054/providers/Microsoft.Network/networkInterfaces/nic70036ae6d30/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"6b6ae8a0-5fb5-4d2c-88cf-4d0cc888feb9\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92054/providers/Microsoft.Network/virtualNetworks/vnet168081fb4c/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"rwssixco30fepnp5kmx0ckpyec.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"disableTcpStateTracking\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\",\r\n \"allowPort25Out\": true\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\",\r\n \"kind\": \"Regular\"\r\n}", - "x-ms-client-request-id" : "07c2b4c7-1237-4b68-9d39-5711cd18c042", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/ebfc19c6-5997-483a-b6ca-c8d445d99dac?api-version=2022-09-01", + "x-ms-request-id" : "ebfc19c6-5997-483a-b6ca-c8d445d99dac", + "Body" : "{\r\n \"name\": \"nic63035a5a78a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg17837/providers/Microsoft.Network/networkInterfaces/nic63035a5a78a\",\r\n \"etag\": \"W/\\\"936dbcab-46ae-4807-90ae-daff1a5ce8fc\\\"\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"27768945-e35b-46f6-96ca-c923414713bd\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg17837/providers/Microsoft.Network/networkInterfaces/nic63035a5a78a/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"936dbcab-46ae-4807-90ae-daff1a5ce8fc\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg17837/providers/Microsoft.Network/virtualNetworks/vnet435673e570/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"e4y5knixcabupj00wl4qe4lwlh.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n \"disableTcpStateTracking\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\",\r\n \"allowPort25Out\": true\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus\",\r\n \"kind\": \"Regular\"\r\n}", + "x-ms-client-request-id" : "1c310352-0e00-4048-b984-333a7b552ab3", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus/asyncoperations/42286d45-4396-4cf1-ae2e-270777afede6?monitor=true&api-version=2022-09-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus/asyncoperations/f1d73d8d-a58c-406f-bcd7-2617498e651f?monitor=true&api-version=2022-09-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.storage/2.23.0-beta.1 (17.0.3.1; Mac OS X; 11.7.2)", - "x-ms-client-request-id" : "e4032525-89b1-4f07-942e-c93b64c20971" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.storage/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.3)", + "x-ms-client-request-id" : "4f7456a5-5b50-49b5-b4f8-cfa6a510d48a" }, "Response" : { "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" : "11998", + "x-ms-ratelimit-remaining-subscription-reads" : "11981", "StatusCode" : "200", - "x-ms-correlation-request-id" : "f963bc87-c0d5-44f0-9f43-bfc8799371fd", - "Date" : "Fri, 13 Jan 2023 02:22:58 GMT", + "x-ms-correlation-request-id" : "faa458f7-a776-466e-b25b-f79e46d6d2e4", + "Date" : "Thu, 20 Apr 2023 03:46:51 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20230113T022259Z:f963bc87-c0d5-44f0-9f43-bfc8799371fd", + "x-ms-routing-request-id" : "JAPANEAST:20230420T034651Z:faa458f7-a776-466e-b25b-f79e46d6d2e4", "Expires" : "-1", "Content-Length" : "1845", - "x-ms-request-id" : "528cc117-bb4a-4aef-802d-74287a95905b", - "Body" : "{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92054/providers/Microsoft.Storage/storageAccounts/stg17102b329b79f\",\"name\":\"stg17102b329b79f\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2023-01-13T02:22:39.6259236Z\",\"key2\":\"2023-01-13T02:22:39.6259236Z\"},\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":true,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2023-01-13T02:22:39.6415470Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2023-01-13T02:22:39.6415470Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2023-01-13T02:22:39.4540426Z\",\"primaryEndpoints\":{\"dfs\":\"https://stg17102b329b79f.dfs.core.windows.net/\",\"web\":\"https://stg17102b329b79f.z13.web.core.windows.net/\",\"blob\":\"https://stg17102b329b79f.blob.core.windows.net/\",\"queue\":\"https://stg17102b329b79f.queue.core.windows.net/\",\"table\":\"https://stg17102b329b79f.table.core.windows.net/\",\"file\":\"https://stg17102b329b79f.file.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://stg17102b329b79f-secondary.dfs.core.windows.net/\",\"web\":\"https://stg17102b329b79f-secondary.z13.web.core.windows.net/\",\"blob\":\"https://stg17102b329b79f-secondary.blob.core.windows.net/\",\"queue\":\"https://stg17102b329b79f-secondary.queue.core.windows.net/\",\"table\":\"https://stg17102b329b79f-secondary.table.core.windows.net/\"}}}", - "x-ms-client-request-id" : "e4032525-89b1-4f07-942e-c93b64c20971", + "x-ms-request-id" : "c6af4b29-fe86-405c-a773-52d9502f4e39", + "Body" : "{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg17837/providers/Microsoft.Storage/storageAccounts/stg86413e8913f42\",\"name\":\"stg86413e8913f42\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2023-04-20T03:46:31.7759189Z\",\"key2\":\"2023-04-20T03:46:31.7759189Z\"},\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":true,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2023-04-20T03:46:31.7759189Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2023-04-20T03:46:31.7759189Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2023-04-20T03:46:31.4946658Z\",\"primaryEndpoints\":{\"dfs\":\"https://stg86413e8913f42.dfs.core.windows.net/\",\"web\":\"https://stg86413e8913f42.z13.web.core.windows.net/\",\"blob\":\"https://stg86413e8913f42.blob.core.windows.net/\",\"queue\":\"https://stg86413e8913f42.queue.core.windows.net/\",\"table\":\"https://stg86413e8913f42.table.core.windows.net/\",\"file\":\"https://stg86413e8913f42.file.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://stg86413e8913f42-secondary.dfs.core.windows.net/\",\"web\":\"https://stg86413e8913f42-secondary.z13.web.core.windows.net/\",\"blob\":\"https://stg86413e8913f42-secondary.blob.core.windows.net/\",\"queue\":\"https://stg86413e8913f42-secondary.queue.core.windows.net/\",\"table\":\"https://stg86413e8913f42-secondary.table.core.windows.net/\"}}}", + "x-ms-client-request-id" : "4f7456a5-5b50-49b5-b4f8-cfa6a510d48a", "Content-Type" : "application/json" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92054/providers/Microsoft.Storage/storageAccounts/stg17102b329b79f?api-version=2022-09-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg17837/providers/Microsoft.Storage/storageAccounts/stg86413e8913f42?api-version=2022-09-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.storage/2.23.0-beta.1 (17.0.3.1; Mac OS X; 11.7.2)", - "x-ms-client-request-id" : "827c09f3-321c-4517-86e7-a1a078c42ffc", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.storage/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.3)", + "x-ms-client-request-id" : "586b0e9b-35d3-4b8a-960e-a3fa850c0454", "Content-Type" : "application/json" }, "Response" : { @@ -213,142 +238,168 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11997", + "x-ms-ratelimit-remaining-subscription-reads" : "11999", "StatusCode" : "200", - "Date" : "Fri, 13 Jan 2023 02:22:59 GMT", - "x-ms-correlation-request-id" : "d8a502f0-e39b-4ae6-b674-e13ef18df3e2", + "Date" : "Thu, 20 Apr 2023 03:46:53 GMT", + "x-ms-correlation-request-id" : "1534f7bc-331e-4790-b9fd-74e29c9b2fef", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20230113T022300Z:d8a502f0-e39b-4ae6-b674-e13ef18df3e2", + "x-ms-routing-request-id" : "JAPANEAST:20230420T034653Z:1534f7bc-331e-4790-b9fd-74e29c9b2fef", "Expires" : "-1", "Content-Length" : "1845", - "x-ms-request-id" : "f7b95f7d-2995-4484-b9b5-29276f7e566f", - "Body" : "{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92054/providers/Microsoft.Storage/storageAccounts/stg17102b329b79f\",\"name\":\"stg17102b329b79f\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2023-01-13T02:22:39.6259236Z\",\"key2\":\"2023-01-13T02:22:39.6259236Z\"},\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":true,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2023-01-13T02:22:39.6415470Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2023-01-13T02:22:39.6415470Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2023-01-13T02:22:39.4540426Z\",\"primaryEndpoints\":{\"dfs\":\"https://stg17102b329b79f.dfs.core.windows.net/\",\"web\":\"https://stg17102b329b79f.z13.web.core.windows.net/\",\"blob\":\"https://stg17102b329b79f.blob.core.windows.net/\",\"queue\":\"https://stg17102b329b79f.queue.core.windows.net/\",\"table\":\"https://stg17102b329b79f.table.core.windows.net/\",\"file\":\"https://stg17102b329b79f.file.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://stg17102b329b79f-secondary.dfs.core.windows.net/\",\"web\":\"https://stg17102b329b79f-secondary.z13.web.core.windows.net/\",\"blob\":\"https://stg17102b329b79f-secondary.blob.core.windows.net/\",\"queue\":\"https://stg17102b329b79f-secondary.queue.core.windows.net/\",\"table\":\"https://stg17102b329b79f-secondary.table.core.windows.net/\"}}}", - "x-ms-client-request-id" : "827c09f3-321c-4517-86e7-a1a078c42ffc", + "x-ms-request-id" : "a7856573-9c42-4731-9595-0d1ef0046d71", + "Body" : "{\"sku\":{\"name\":\"Standard_RAGRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg17837/providers/Microsoft.Storage/storageAccounts/stg86413e8913f42\",\"name\":\"stg86413e8913f42\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastus\",\"tags\":{},\"properties\":{\"keyCreationTime\":{\"key1\":\"2023-04-20T03:46:31.7759189Z\",\"key2\":\"2023-04-20T03:46:31.7759189Z\"},\"privateEndpointConnections\":[],\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":true,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2023-04-20T03:46:31.7759189Z\"},\"blob\":{\"keyType\":\"Account\",\"enabled\":true,\"lastEnabledTime\":\"2023-04-20T03:46:31.7759189Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2023-04-20T03:46:31.4946658Z\",\"primaryEndpoints\":{\"dfs\":\"https://stg86413e8913f42.dfs.core.windows.net/\",\"web\":\"https://stg86413e8913f42.z13.web.core.windows.net/\",\"blob\":\"https://stg86413e8913f42.blob.core.windows.net/\",\"queue\":\"https://stg86413e8913f42.queue.core.windows.net/\",\"table\":\"https://stg86413e8913f42.table.core.windows.net/\",\"file\":\"https://stg86413e8913f42.file.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus\",\"statusOfSecondary\":\"available\",\"secondaryEndpoints\":{\"dfs\":\"https://stg86413e8913f42-secondary.dfs.core.windows.net/\",\"web\":\"https://stg86413e8913f42-secondary.z13.web.core.windows.net/\",\"blob\":\"https://stg86413e8913f42-secondary.blob.core.windows.net/\",\"queue\":\"https://stg86413e8913f42-secondary.queue.core.windows.net/\",\"table\":\"https://stg86413e8913f42-secondary.table.core.windows.net/\"}}}", + "x-ms-client-request-id" : "586b0e9b-35d3-4b8a-960e-a3fa850c0454", + "Content-Type" : "application/json" + }, + "Exception" : null + }, { + "Method" : "PUT", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg17837/providers/Microsoft.Compute/virtualMachines/javavm?api-version=2023-03-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.3)", + "x-ms-client-request-id" : "577f3f38-cc90-445b-9178-aba89610b2e7", "Content-Type" : "application/json" }, + "Response" : { + "X-Content-Type-Options" : "nosniff", + "Connection" : "close", + "Pragma" : "no-cache", + "StatusCode" : "429", + "Date" : "Thu, 20 Apr 2023 03:46:54 GMT", + "x-ms-correlation-request-id" : "ab9fa165-52d2-432a-8b89-2842221454a3", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "JAPANEAST:20230420T034654Z:ab9fa165-52d2-432a-8b89-2842221454a3", + "Expires" : "-1", + "Content-Length" : "303", + "x-ms-request-id" : "ab9fa165-52d2-432a-8b89-2842221454a3", + "Body" : "{\"error\":{\"code\":\"SubscriptionRequestsThrottled\",\"message\":\"Number of requests for subscription '00000000-0000-0000-0000-000000000000' and operation 'PUT/SUBSCRIPTIONS/RESOURCEGROUPS/PROVIDERS/MICROSOFT.COMPUTE/VIRTUALMACHINES/' exceeded the backend storage limit. Please try again after '6' seconds.\"}}", + "Content-Type" : "application/json; charset=utf-8" + }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92054/providers/Microsoft.Compute/virtualMachines/javavm?api-version=2023-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg17837/providers/Microsoft.Compute/virtualMachines/javavm?api-version=2023-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.23.0-beta.1 (17.0.3.1; Mac OS X; 11.7.2)", - "x-ms-client-request-id" : "0175e693-8e12-4164-bb59-ed307c861ee9", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.3)", + "x-ms-client-request-id" : "577f3f38-cc90-445b-9178-aba89610b2e7", "Content-Type" : "application/json" }, "Response" : { "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", "Pragma" : "no-cache", "Azure-AsyncNotification" : "Enabled", "StatusCode" : "201", - "Date" : "Fri, 13 Jan 2023 02:23:04 GMT", - "x-ms-correlation-request-id" : "d67d2d1b-17b2-4c6d-be09-b097c5b2f4e3", + "Date" : "Thu, 20 Apr 2023 03:47:05 GMT", + "x-ms-correlation-request-id" : "f5644df3-76d5-45b6-a0d9-4ce3ee0186a7", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Retry-After" : "0", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20230113T022305Z:d67d2d1b-17b2-4c6d-be09-b097c5b2f4e3", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;202,Microsoft.Compute/PutVM30Min;1162", + "x-ms-routing-request-id" : "JAPANEAST:20230420T034705Z:f5644df3-76d5-45b6-a0d9-4ce3ee0186a7", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1199", "Expires" : "-1", - "Content-Length" : "2017", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/5866824e-6737-49b5-9f2d-085ec8d8af5c?p=c4eddfd8-50c0-4095-b028-281986cc641e&api-version=2023-03-01", - "x-ms-request-id" : "5866824e-6737-49b5-9f2d-085ec8d8af5c", - "Body" : "{\r\n \"name\": \"javavm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92054/providers/Microsoft.Compute/virtualMachines/javavm\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"7c628878-6a24-4982-9075-e9e8f3b9709d\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"9600.20778.230108\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"javatest\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg17102b329b79f.blob.core.windows.net/vhds/javavm-os-disk-0ef5a666-a94a-4aad-9765-ac627d866aeb.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"deleteOption\": \"Detach\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javavm\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92054/providers/Microsoft.Network/networkInterfaces/nic70036ae6d30\",\"properties\":{\"primary\":true}}]},\r\n \"licenseType\": \"Windows_Server\",\r\n \"provisioningState\": \"Creating\",\r\n \"timeCreated\": \"2023-01-13T02:23:02.975874+00:00\"\r\n }\r\n}", - "x-ms-client-request-id" : "0175e693-8e12-4164-bb59-ed307c861ee9", + "Content-Length" : "2018", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/b2500d73-64d2-4d14-8a3b-fd7334ca33aa?p=c4eddfd8-50c0-4095-b028-281986cc641e&api-version=2023-03-01", + "x-ms-request-id" : "b2500d73-64d2-4d14-8a3b-fd7334ca33aa", + "Body" : "{\r\n \"name\": \"javavm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg17837/providers/Microsoft.Compute/virtualMachines/javavm\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"531e9e1a-6a42-4b4a-80ac-dc8a9cf0dfdc\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"9600.20919.230406\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"javatest\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg86413e8913f42.blob.core.windows.net/vhds/javavm-os-disk-e866896d-802a-417b-b5e6-6801c089eeef.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"deleteOption\": \"Detach\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javavm\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg17837/providers/Microsoft.Network/networkInterfaces/nic63035a5a78a\",\"properties\":{\"primary\":true}}]},\r\n \"licenseType\": \"Windows_Server\",\r\n \"provisioningState\": \"Creating\",\r\n \"timeCreated\": \"2023-04-20T03:47:03.9947972+00:00\"\r\n }\r\n}", + "x-ms-client-request-id" : "577f3f38-cc90-445b-9178-aba89610b2e7", "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/eastus/operations/5866824e-6737-49b5-9f2d-085ec8d8af5c?p=c4eddfd8-50c0-4095-b028-281986cc641e&api-version=2023-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/b2500d73-64d2-4d14-8a3b-fd7334ca33aa?p=c4eddfd8-50c0-4095-b028-281986cc641e&api-version=2023-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.23.0-beta.1 (17.0.3.1; Mac OS X; 11.7.2)", - "x-ms-client-request-id" : "1e604e10-f7b8-4d3d-99ad-cebc3b6060ef" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.3)", + "x-ms-client-request-id" : "82068d9f-6cff-4a9a-9730-9f8a66c0b798" }, "Response" : { "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11988", + "x-ms-ratelimit-remaining-subscription-reads" : "11998", "StatusCode" : "200", - "x-ms-correlation-request-id" : "79747096-a1a2-435e-82fb-cfddea521204", - "Date" : "Fri, 13 Jan 2023 02:23:15 GMT", + "x-ms-correlation-request-id" : "5706b122-3584-4fb4-ac47-430a6b237104", + "Date" : "Thu, 20 Apr 2023 03:47:16 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14937,Microsoft.Compute/GetOperation30Min;29937", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20230113T022315Z:79747096-a1a2-435e-82fb-cfddea521204", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29999", + "x-ms-routing-request-id" : "JAPANEAST:20230420T034716Z:5706b122-3584-4fb4-ac47-430a6b237104", "Expires" : "-1", "Content-Length" : "134", - "x-ms-request-id" : "613d3706-8456-431e-be6d-5951fefdb2b3", - "Body" : "{\r\n \"startTime\": \"2023-01-13T02:23:02.9133736+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5866824e-6737-49b5-9f2d-085ec8d8af5c\"\r\n}", - "x-ms-client-request-id" : "1e604e10-f7b8-4d3d-99ad-cebc3b6060ef", + "x-ms-request-id" : "c810c5f7-0b15-4d0a-ba97-23c37d3f23fb", + "Body" : "{\r\n \"startTime\": \"2023-04-20T03:47:03.9947972+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b2500d73-64d2-4d14-8a3b-fd7334ca33aa\"\r\n}", + "x-ms-client-request-id" : "82068d9f-6cff-4a9a-9730-9f8a66c0b798", "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/eastus/operations/5866824e-6737-49b5-9f2d-085ec8d8af5c?p=c4eddfd8-50c0-4095-b028-281986cc641e&api-version=2023-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/b2500d73-64d2-4d14-8a3b-fd7334ca33aa?p=c4eddfd8-50c0-4095-b028-281986cc641e&api-version=2023-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.23.0-beta.1 (17.0.3.1; Mac OS X; 11.7.2)", - "x-ms-client-request-id" : "3ab98a52-6be0-494a-a2f0-986383ae20d1" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.3)", + "x-ms-client-request-id" : "698daeb7-adda-4135-86da-3e211830e475" }, "Response" : { "Server" : "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" : "11993", + "x-ms-ratelimit-remaining-subscription-reads" : "11997", "StatusCode" : "200", - "x-ms-correlation-request-id" : "6a90a73c-d363-4b00-aa6d-6f1e6df84172", - "Date" : "Fri, 13 Jan 2023 02:24:04 GMT", + "x-ms-correlation-request-id" : "dc90cf1d-3a8c-4fed-89f1-4cbd1bda34ea", + "Date" : "Thu, 20 Apr 2023 03:48:06 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14840,Microsoft.Compute/GetOperation30Min;29839", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20230113T022405Z:6a90a73c-d363-4b00-aa6d-6f1e6df84172", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29997", + "x-ms-routing-request-id" : "JAPANEAST:20230420T034807Z:dc90cf1d-3a8c-4fed-89f1-4cbd1bda34ea", "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "cbbb237c-6cb0-4a6b-9a2c-08239218edd4", - "Body" : "{\r\n \"startTime\": \"2023-01-13T02:23:02.9133736+00:00\",\r\n \"endTime\": \"2023-01-13T02:23:43.7415081+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"5866824e-6737-49b5-9f2d-085ec8d8af5c\"\r\n}", - "x-ms-client-request-id" : "3ab98a52-6be0-494a-a2f0-986383ae20d1", + "Content-Length" : "183", + "x-ms-request-id" : "9b4bdd7e-7fc4-45dc-b5ee-d2b7d0424224", + "Body" : "{\r\n \"startTime\": \"2023-04-20T03:47:03.9947972+00:00\",\r\n \"endTime\": \"2023-04-20T03:47:48.478743+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"b2500d73-64d2-4d14-8a3b-fd7334ca33aa\"\r\n}", + "x-ms-client-request-id" : "698daeb7-adda-4135-86da-3e211830e475", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92054/providers/Microsoft.Compute/virtualMachines/javavm?api-version=2023-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg17837/providers/Microsoft.Compute/virtualMachines/javavm?api-version=2023-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.23.0-beta.1 (17.0.3.1; Mac OS X; 11.7.2)", - "x-ms-client-request-id" : "519810af-8975-4e64-bc21-f88963df91e1" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.3)", + "x-ms-client-request-id" : "30172c1c-f73c-4f90-ab94-b79a8f34b5fc" }, "Response" : { "Server" : "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" : "11988", + "x-ms-ratelimit-remaining-subscription-reads" : "11999", "StatusCode" : "200", - "x-ms-correlation-request-id" : "5bd3c9e9-b794-428b-9c92-6c0526467b04", - "Date" : "Fri, 13 Jan 2023 02:24:05 GMT", + "x-ms-correlation-request-id" : "50130f8e-d51b-40e7-a33d-bd08edcbcf76", + "Date" : "Thu, 20 Apr 2023 03:48:08 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3836,Microsoft.Compute/LowCostGet30Min;31860", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20230113T022406Z:5bd3c9e9-b794-428b-9c92-6c0526467b04", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3998,Microsoft.Compute/LowCostGet30Min;31998", + "x-ms-routing-request-id" : "JAPANEAST:20230420T034809Z:50130f8e-d51b-40e7-a33d-bd08edcbcf76", "Expires" : "-1", - "Content-Length" : "2046", - "x-ms-request-id" : "925298eb-ef98-4d26-8276-dead3ae406eb", - "Body" : "{\r\n \"name\": \"javavm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92054/providers/Microsoft.Compute/virtualMachines/javavm\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"7c628878-6a24-4982-9075-e9e8f3b9709d\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"9600.20778.230108\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"javatest\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg17102b329b79f.blob.core.windows.net/vhds/javavm-os-disk-0ef5a666-a94a-4aad-9765-ac627d866aeb.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javavm\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92054/providers/Microsoft.Network/networkInterfaces/nic70036ae6d30\",\"properties\":{\"primary\":true}}]},\r\n \"licenseType\": \"Windows_Server\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2023-01-13T02:23:02.975874+00:00\"\r\n }\r\n}", - "x-ms-client-request-id" : "519810af-8975-4e64-bc21-f88963df91e1", + "Content-Length" : "2047", + "x-ms-request-id" : "c6c186b0-92aa-42e8-a987-ad2b7654dfa2", + "Body" : "{\r\n \"name\": \"javavm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg17837/providers/Microsoft.Compute/virtualMachines/javavm\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"531e9e1a-6a42-4b4a-80ac-dc8a9cf0dfdc\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"9600.20919.230406\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"javatest\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg86413e8913f42.blob.core.windows.net/vhds/javavm-os-disk-e866896d-802a-417b-b5e6-6801c089eeef.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javavm\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg17837/providers/Microsoft.Network/networkInterfaces/nic63035a5a78a\",\"properties\":{\"primary\":true}}]},\r\n \"licenseType\": \"Windows_Server\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2023-04-20T03:47:03.9947972+00:00\"\r\n }\r\n}", + "x-ms-client-request-id" : "30172c1c-f73c-4f90-ab94-b79a8f34b5fc", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92054/providers/Microsoft.Compute/virtualMachines?api-version=2023-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg17837/providers/Microsoft.Compute/virtualMachines?api-version=2023-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.23.0-beta.1 (17.0.3.1; Mac OS X; 11.7.2)", - "x-ms-client-request-id" : "f183b551-1cb9-4a5e-837d-5d33ff200027", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.3)", + "x-ms-client-request-id" : "ba5401cf-fce6-474b-ba74-834b412b8312", "Content-Type" : "application/json" }, "Response" : { @@ -356,28 +407,28 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11989", + "x-ms-ratelimit-remaining-subscription-reads" : "11996", "StatusCode" : "200", - "Date" : "Fri, 13 Jan 2023 02:24:06 GMT", - "x-ms-correlation-request-id" : "f8f57ce3-1514-4bff-98e5-17227d52a288", + "Date" : "Thu, 20 Apr 2023 03:48:09 GMT", + "x-ms-correlation-request-id" : "10b2eb9d-bc77-4e27-a5bc-70759c1d1da0", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20230113T022406Z:f8f57ce3-1514-4bff-98e5-17227d52a288", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostGet3Min;132,Microsoft.Compute/HighCostGet30Min;692", + "x-ms-routing-request-id" : "JAPANEAST:20230420T034810Z:10b2eb9d-bc77-4e27-a5bc-70759c1d1da0", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostGet3Min;139,Microsoft.Compute/HighCostGet30Min;699", "Expires" : "-1", - "Content-Length" : "2299", - "x-ms-request-id" : "26d6db49-b5b2-497b-bebc-139a8eff1388", - "Body" : "{\r\n \"value\": [\r\n {\r\n \"name\": \"javavm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92054/providers/Microsoft.Compute/virtualMachines/javavm\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"7c628878-6a24-4982-9075-e9e8f3b9709d\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"9600.20778.230108\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"javatest\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg17102b329b79f.blob.core.windows.net/vhds/javavm-os-disk-0ef5a666-a94a-4aad-9765-ac627d866aeb.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javavm\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92054/providers/Microsoft.Network/networkInterfaces/nic70036ae6d30\",\"properties\":{\"primary\":true}}]},\r\n \"licenseType\": \"Windows_Server\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2023-01-13T02:23:02.975874+00:00\"\r\n }\r\n }\r\n ]\r\n}", - "x-ms-client-request-id" : "f183b551-1cb9-4a5e-837d-5d33ff200027", + "Content-Length" : "2300", + "x-ms-request-id" : "b4e75e02-ea86-46ee-b584-2f0b9fbde4dc", + "Body" : "{\r\n \"value\": [\r\n {\r\n \"name\": \"javavm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg17837/providers/Microsoft.Compute/virtualMachines/javavm\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"531e9e1a-6a42-4b4a-80ac-dc8a9cf0dfdc\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"9600.20919.230406\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"javatest\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg86413e8913f42.blob.core.windows.net/vhds/javavm-os-disk-e866896d-802a-417b-b5e6-6801c089eeef.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javavm\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg17837/providers/Microsoft.Network/networkInterfaces/nic63035a5a78a\",\"properties\":{\"primary\":true}}]},\r\n \"licenseType\": \"Windows_Server\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2023-04-20T03:47:03.9947972+00:00\"\r\n }\r\n }\r\n ]\r\n}", + "x-ms-client-request-id" : "ba5401cf-fce6-474b-ba74-834b412b8312", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92054/providers/Microsoft.Compute/virtualMachines/javavm?api-version=2023-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg17837/providers/Microsoft.Compute/virtualMachines/javavm?api-version=2023-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.23.0-beta.1 (17.0.3.1; Mac OS X; 11.7.2)", - "x-ms-client-request-id" : "cbdc3176-2523-401a-a85f-5be0575fc0d4", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.3)", + "x-ms-client-request-id" : "8969b725-a1c9-41ca-b06e-ea01ed22bfca", "Content-Type" : "application/json" }, "Response" : { @@ -385,28 +436,28 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11975", + "x-ms-ratelimit-remaining-subscription-reads" : "11998", "StatusCode" : "200", - "Date" : "Fri, 13 Jan 2023 02:24:06 GMT", - "x-ms-correlation-request-id" : "530a730c-38de-478c-aa13-6ac32b212a4a", + "Date" : "Thu, 20 Apr 2023 03:48:10 GMT", + "x-ms-correlation-request-id" : "54141643-961b-473f-be75-fe7f2afc7c9f", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20230113T022407Z:530a730c-38de-478c-aa13-6ac32b212a4a", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3833,Microsoft.Compute/LowCostGet30Min;31857", + "x-ms-routing-request-id" : "JAPANEAST:20230420T034811Z:54141643-961b-473f-be75-fe7f2afc7c9f", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31996", "Expires" : "-1", - "Content-Length" : "2046", - "x-ms-request-id" : "77fb2674-af4a-4cda-8f81-3d60ec8e8813", - "Body" : "{\r\n \"name\": \"javavm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92054/providers/Microsoft.Compute/virtualMachines/javavm\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"7c628878-6a24-4982-9075-e9e8f3b9709d\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"9600.20778.230108\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"javatest\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg17102b329b79f.blob.core.windows.net/vhds/javavm-os-disk-0ef5a666-a94a-4aad-9765-ac627d866aeb.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javavm\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92054/providers/Microsoft.Network/networkInterfaces/nic70036ae6d30\",\"properties\":{\"primary\":true}}]},\r\n \"licenseType\": \"Windows_Server\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2023-01-13T02:23:02.975874+00:00\"\r\n }\r\n}", - "x-ms-client-request-id" : "cbdc3176-2523-401a-a85f-5be0575fc0d4", + "Content-Length" : "2047", + "x-ms-request-id" : "9a2e0009-a85b-4a60-9565-34ef74c8cdae", + "Body" : "{\r\n \"name\": \"javavm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg17837/providers/Microsoft.Compute/virtualMachines/javavm\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"531e9e1a-6a42-4b4a-80ac-dc8a9cf0dfdc\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"9600.20919.230406\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"javatest\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg86413e8913f42.blob.core.windows.net/vhds/javavm-os-disk-e866896d-802a-417b-b5e6-6801c089eeef.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javavm\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg17837/providers/Microsoft.Network/networkInterfaces/nic63035a5a78a\",\"properties\":{\"primary\":true}}]},\r\n \"licenseType\": \"Windows_Server\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2023-04-20T03:47:03.9947972+00:00\"\r\n }\r\n}", + "x-ms-client-request-id" : "8969b725-a1c9-41ca-b06e-ea01ed22bfca", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92054/providers/Microsoft.Compute/virtualMachines/javavm?$expand=instanceView&api-version=2023-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg17837/providers/Microsoft.Compute/virtualMachines/javavm?$expand=instanceView&api-version=2023-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.23.0-beta.1 (17.0.3.1; Mac OS X; 11.7.2)", - "x-ms-client-request-id" : "d615e811-e8f8-40b4-b8cd-71038b470b12", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.3)", + "x-ms-client-request-id" : "6af5c091-2891-4ba2-91c0-f3380086670c", "Content-Type" : "application/json" }, "Response" : { @@ -416,26 +467,26 @@ "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11995", "StatusCode" : "200", - "Date" : "Fri, 13 Jan 2023 02:24:07 GMT", - "x-ms-correlation-request-id" : "2d0d154e-f45b-4e4c-a997-c637e42816a5", + "Date" : "Thu, 20 Apr 2023 03:48:11 GMT", + "x-ms-correlation-request-id" : "bba5e9b8-0cf4-4a1c-b82a-f790f0678e5d", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20230113T022408Z:2d0d154e-f45b-4e4c-a997-c637e42816a5", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3831,Microsoft.Compute/LowCostGet30Min;31855", + "x-ms-routing-request-id" : "JAPANEAST:20230420T034812Z:bba5e9b8-0cf4-4a1c-b82a-f790f0678e5d", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3995,Microsoft.Compute/LowCostGet30Min;31995", "Expires" : "-1", - "Content-Length" : "3215", - "x-ms-request-id" : "db2e7b04-6d29-49c4-bb21-8b9d56282d90", - "Body" : "{\r\n \"name\": \"javavm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92054/providers/Microsoft.Compute/virtualMachines/javavm\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"7c628878-6a24-4982-9075-e9e8f3b9709d\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"9600.20778.230108\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"javatest\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg17102b329b79f.blob.core.windows.net/vhds/javavm-os-disk-0ef5a666-a94a-4aad-9765-ac627d866aeb.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javavm\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92054/providers/Microsoft.Network/networkInterfaces/nic70036ae6d30\",\"properties\":{\"primary\":true}}]},\r\n \"licenseType\": \"Windows_Server\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"Unknown\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n \"level\": \"Warning\",\r\n \"displayStatus\": \"Not Ready\",\r\n \"message\": \"VM status blob is found but not yet populated.\",\r\n \"time\": \"2023-01-13T02:24:08+00:00\"\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"javatest\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2023-01-13T02:23:03.5071238+00:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2023-01-13T02:23:43.7258828+00:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n },\r\n \"timeCreated\": \"2023-01-13T02:23:02.975874+00:00\"\r\n }\r\n}", - "x-ms-client-request-id" : "d615e811-e8f8-40b4-b8cd-71038b470b12", + "Content-Length" : "3216", + "x-ms-request-id" : "61463e50-9ef4-4bd0-804c-47840d3515a3", + "Body" : "{\r\n \"name\": \"javavm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg17837/providers/Microsoft.Compute/virtualMachines/javavm\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"531e9e1a-6a42-4b4a-80ac-dc8a9cf0dfdc\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2a_v4\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"9600.20919.230406\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"javatest\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg86413e8913f42.blob.core.windows.net/vhds/javavm-os-disk-e866896d-802a-417b-b5e6-6801c089eeef.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"javavm\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg17837/providers/Microsoft.Network/networkInterfaces/nic63035a5a78a\",\"properties\":{\"primary\":true}}]},\r\n \"licenseType\": \"Windows_Server\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"Unknown\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n \"level\": \"Warning\",\r\n \"displayStatus\": \"Not Ready\",\r\n \"message\": \"VM status blob is found but not yet populated.\",\r\n \"time\": \"2023-04-20T03:48:12+00:00\"\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"javatest\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2023-04-20T03:47:04.5416571+00:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2023-04-20T03:47:48.4631188+00:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n },\r\n \"timeCreated\": \"2023-04-20T03:47:03.9947972+00:00\"\r\n }\r\n}", + "x-ms-client-request-id" : "6af5c091-2891-4ba2-91c0-f3380086670c", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg92054/providers/Microsoft.Compute/virtualMachines/javavm?api-version=2023-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg17837/providers/Microsoft.Compute/virtualMachines/javavm?api-version=2023-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.23.0-beta.1 (17.0.3.1; Mac OS X; 11.7.2)", - "x-ms-client-request-id" : "06c7608b-002a-4cdf-9a3e-3dbf5685faf6", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.3)", + "x-ms-client-request-id" : "08ed18ab-a142-43df-b92d-0af19946a368", "Content-Type" : "application/json" }, "Response" : { @@ -445,137 +496,109 @@ "Pragma" : "no-cache", "Azure-AsyncNotification" : "Enabled", "StatusCode" : "202", - "Date" : "Fri, 13 Jan 2023 02:24:08 GMT", - "x-ms-correlation-request-id" : "7caf5ece-b012-4044-ad61-18705688777e", + "Date" : "Thu, 20 Apr 2023 03:48:13 GMT", + "x-ms-correlation-request-id" : "b7250ae4-a6e2-4a0f-ab22-6a9227f3bf18", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Retry-After" : "0", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20230113T022408Z:7caf5ece-b012-4044-ad61-18705688777e", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteVM3Min;235,Microsoft.Compute/DeleteVM30Min;1195", + "x-ms-routing-request-id" : "JAPANEAST:20230420T034813Z:b7250ae4-a6e2-4a0f-ab22-6a9227f3bf18", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteVM3Min;239,Microsoft.Compute/DeleteVM30Min;1199", "Expires" : "-1", "Content-Length" : "0", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/a8e040c6-565a-40c8-8802-e544d1699b86?p=c4eddfd8-50c0-4095-b028-281986cc641e&api-version=2023-03-01", - "x-ms-request-id" : "a8e040c6-565a-40c8-8802-e544d1699b86", - "x-ms-client-request-id" : "06c7608b-002a-4cdf-9a3e-3dbf5685faf6", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/a8e040c6-565a-40c8-8802-e544d1699b86?p=c4eddfd8-50c0-4095-b028-281986cc641e&monitor=true&api-version=2023-03-01" + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/31b99b07-4ed5-4d27-8b62-e5b73fe45c01?p=c4eddfd8-50c0-4095-b028-281986cc641e&api-version=2023-03-01", + "x-ms-request-id" : "31b99b07-4ed5-4d27-8b62-e5b73fe45c01", + "x-ms-client-request-id" : "08ed18ab-a142-43df-b92d-0af19946a368", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/31b99b07-4ed5-4d27-8b62-e5b73fe45c01?p=c4eddfd8-50c0-4095-b028-281986cc641e&monitor=true&api-version=2023-03-01" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/a8e040c6-565a-40c8-8802-e544d1699b86?p=c4eddfd8-50c0-4095-b028-281986cc641e&api-version=2023-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/31b99b07-4ed5-4d27-8b62-e5b73fe45c01?p=c4eddfd8-50c0-4095-b028-281986cc641e&api-version=2023-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.23.0-beta.1 (17.0.3.1; Mac OS X; 11.7.2)", - "x-ms-client-request-id" : "4eeb3e90-4e93-404b-b4da-c6f1ff6fce6c" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.3)", + "x-ms-client-request-id" : "9013b45d-fde9-42fe-9d45-77ed9c125b4a" }, "Response" : { "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11972", + "x-ms-ratelimit-remaining-subscription-reads" : "11994", "StatusCode" : "200", - "x-ms-correlation-request-id" : "adb900fb-e152-494e-b0c6-d03fdf9419da", - "Date" : "Fri, 13 Jan 2023 02:24:18 GMT", + "x-ms-correlation-request-id" : "6aa611f4-513c-4d6b-b4a1-5bbf30f1993f", + "Date" : "Thu, 20 Apr 2023 03:48:23 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14814,Microsoft.Compute/GetOperation30Min;29813", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20230113T022419Z:adb900fb-e152-494e-b0c6-d03fdf9419da", - "Expires" : "-1", - "Content-Length" : "133", - "x-ms-request-id" : "7573c806-3f2f-49c6-b047-aaa2fc284da1", - "Body" : "{\r\n \"startTime\": \"2023-01-13T02:24:08.616512+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"a8e040c6-565a-40c8-8802-e544d1699b86\"\r\n}", - "x-ms-client-request-id" : "4eeb3e90-4e93-404b-b4da-c6f1ff6fce6c", - "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/eastus/operations/a8e040c6-565a-40c8-8802-e544d1699b86?p=c4eddfd8-50c0-4095-b028-281986cc641e&api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.23.0-beta.1 (17.0.3.1; Mac OS X; 11.7.2)", - "x-ms-client-request-id" : "58361dd5-604b-422e-b3af-87dd8575fd1f" - }, - "Response" : { - "Server" : "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" : "11993", - "StatusCode" : "200", - "x-ms-correlation-request-id" : "903ae624-ed58-4326-8cbd-c04fd03a3f8b", - "Date" : "Fri, 13 Jan 2023 02:24:49 GMT", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14743,Microsoft.Compute/GetOperation30Min;29740", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20230113T022450Z:903ae624-ed58-4326-8cbd-c04fd03a3f8b", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29996", + "x-ms-routing-request-id" : "JAPANEAST:20230420T034824Z:6aa611f4-513c-4d6b-b4a1-5bbf30f1993f", "Expires" : "-1", - "Content-Length" : "133", - "x-ms-request-id" : "96e9e1be-2431-4270-b097-e716bac2ace9", - "Body" : "{\r\n \"startTime\": \"2023-01-13T02:24:08.616512+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"a8e040c6-565a-40c8-8802-e544d1699b86\"\r\n}", - "x-ms-client-request-id" : "58361dd5-604b-422e-b3af-87dd8575fd1f", + "Content-Length" : "134", + "x-ms-request-id" : "bdf4ddc5-8100-4dc7-a9f3-bcaa465430cf", + "Body" : "{\r\n \"startTime\": \"2023-04-20T03:48:13.1191497+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"31b99b07-4ed5-4d27-8b62-e5b73fe45c01\"\r\n}", + "x-ms-client-request-id" : "9013b45d-fde9-42fe-9d45-77ed9c125b4a", "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/eastus/operations/a8e040c6-565a-40c8-8802-e544d1699b86?p=c4eddfd8-50c0-4095-b028-281986cc641e&api-version=2023-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/31b99b07-4ed5-4d27-8b62-e5b73fe45c01?p=c4eddfd8-50c0-4095-b028-281986cc641e&api-version=2023-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.23.0-beta.1 (17.0.3.1; Mac OS X; 11.7.2)", - "x-ms-client-request-id" : "eb32fd85-fd96-4616-a6a4-aebda242e974" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.3)", + "x-ms-client-request-id" : "11b12497-f1d8-4019-86eb-df3ba0055e89" }, "Response" : { "Server" : "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" : "11992", + "x-ms-ratelimit-remaining-subscription-reads" : "11997", "StatusCode" : "200", - "x-ms-correlation-request-id" : "84c4f641-ae90-4349-8f45-4bb2e77433b5", - "Date" : "Fri, 13 Jan 2023 02:25:20 GMT", + "x-ms-correlation-request-id" : "148c63b3-9975-4a9c-a789-822895a4a2be", + "Date" : "Thu, 20 Apr 2023 03:48:54 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14676,Microsoft.Compute/GetOperation30Min;29664", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20230113T022521Z:84c4f641-ae90-4349-8f45-4bb2e77433b5", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29995", + "x-ms-routing-request-id" : "JAPANEAST:20230420T034854Z:148c63b3-9975-4a9c-a789-822895a4a2be", "Expires" : "-1", - "Content-Length" : "183", - "x-ms-request-id" : "956322dc-4b37-435f-b86a-ea328cb93eec", - "Body" : "{\r\n \"startTime\": \"2023-01-13T02:24:08.616512+00:00\",\r\n \"endTime\": \"2023-01-13T02:24:51.9915215+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"a8e040c6-565a-40c8-8802-e544d1699b86\"\r\n}", - "x-ms-client-request-id" : "eb32fd85-fd96-4616-a6a4-aebda242e974", + "Content-Length" : "184", + "x-ms-request-id" : "7ab2378c-f7da-4a86-9bad-c1366552b1de", + "Body" : "{\r\n \"startTime\": \"2023-04-20T03:48:13.1191497+00:00\",\r\n \"endTime\": \"2023-04-20T03:48:42.9626541+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"31b99b07-4ed5-4d27-8b62-e5b73fe45c01\"\r\n}", + "x-ms-client-request-id" : "11b12497-f1d8-4019-86eb-df3ba0055e89", "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/eastus/operations/a8e040c6-565a-40c8-8802-e544d1699b86?p=c4eddfd8-50c0-4095-b028-281986cc641e&monitor=true&api-version=2023-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/31b99b07-4ed5-4d27-8b62-e5b73fe45c01?p=c4eddfd8-50c0-4095-b028-281986cc641e&monitor=true&api-version=2023-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.23.0-beta.1 (17.0.3.1; Mac OS X; 11.7.2)", - "x-ms-client-request-id" : "815c1cfb-f5f0-458f-84ad-ab3ff32101ea" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.3)", + "x-ms-client-request-id" : "bd68d8e7-ac43-427c-a3e3-e5a4f91cd771" }, "Response" : { "Server" : "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" : "11991", + "x-ms-ratelimit-remaining-subscription-reads" : "11993", "StatusCode" : "200", - "x-ms-correlation-request-id" : "5e6580f0-fceb-4d66-9675-299927ea3fca", - "Date" : "Fri, 13 Jan 2023 02:25:21 GMT", + "x-ms-correlation-request-id" : "4012191e-7b0c-4148-83ec-bbbf2ae8f2fe", + "Date" : "Thu, 20 Apr 2023 03:48:54 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14674,Microsoft.Compute/GetOperation30Min;29662", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20230113T022522Z:5e6580f0-fceb-4d66-9675-299927ea3fca", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29994", + "x-ms-routing-request-id" : "JAPANEAST:20230420T034855Z:4012191e-7b0c-4148-83ec-bbbf2ae8f2fe", "Expires" : "-1", "Content-Length" : "0", - "x-ms-request-id" : "85bad3e8-8f42-4776-b3df-b4cc949f74c0", - "x-ms-client-request-id" : "815c1cfb-f5f0-458f-84ad-ab3ff32101ea" + "x-ms-request-id" : "2376a3b5-5529-4aa1-b7ed-bc5d19eedbaa", + "x-ms-client-request-id" : "bd68d8e7-ac43-427c-a3e3-e5a4f91cd771" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg92054?api-version=2021-01-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg17837?api-version=2021-01-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.23.0-beta.1 (17.0.3.1; Mac OS X; 11.7.2)", - "x-ms-client-request-id" : "8ba63c76-34e4-4c7e-a02d-ef4ee26cf070", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.3)", + "x-ms-client-request-id" : "ab80c430-93a7-4c3d-bd27-3a57b2839ff7", "Content-Type" : "application/json" }, "Response" : { @@ -583,18 +606,18 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "StatusCode" : "202", - "Date" : "Fri, 13 Jan 2023 02:25:24 GMT", - "x-ms-correlation-request-id" : "7da3d772-6edc-4162-936f-5846e07ad208", + "Date" : "Thu, 20 Apr 2023 03:48:59 GMT", + "x-ms-correlation-request-id" : "b087bd6c-f985-4214-8d47-c53261d03b9f", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Retry-After" : "0", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20230113T022525Z:7da3d772-6edc-4162-936f-5846e07ad208", + "x-ms-routing-request-id" : "JAPANEAST:20230420T034859Z:b087bd6c-f985-4214-8d47-c53261d03b9f", "Expires" : "-1", "Content-Length" : "0", - "x-ms-request-id" : "7da3d772-6edc-4162-936f-5846e07ad208", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc5MjA1NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-01-01" + "x-ms-request-id" : "b087bd6c-f985-4214-8d47-c53261d03b9f", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkcxNzgzNy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2021-01-01" }, "Exception" : null } ], - "variables" : [ "javacsmrg92054", "javacsmrg202024", "nic70036ae6d30", "vnet168081fb4c", "stg17102b329b79f" ] + "variables" : [ "javacsmrg17837", "javacsmrg256068", "nic63035a5a78a", "vnet435673e570", "stg86413e8913f42" ] } \ No newline at end of file diff --git a/sdk/resourcemanager/azure-resourcemanager-compute/src/test/resources/session-records/VirtualMachineScaleSetOperationsTests.canListInstancesIncludingInstanceView.json b/sdk/resourcemanager/azure-resourcemanager-compute/src/test/resources/session-records/VirtualMachineScaleSetOperationsTests.canListInstancesIncludingInstanceView.json index 29a621836e2a..7780397e6daa 100644 --- a/sdk/resourcemanager/azure-resourcemanager-compute/src/test/resources/session-records/VirtualMachineScaleSetOperationsTests.canListInstancesIncludingInstanceView.json +++ b/sdk/resourcemanager/azure-resourcemanager-compute/src/test/resources/session-records/VirtualMachineScaleSetOperationsTests.canListInstancesIncludingInstanceView.json @@ -1,972 +1,944 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg43408?api-version=2021-01-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg69500?api-version=2021-01-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.23.0-beta.1 (17.0.3.1; Mac OS X; 11.7.2)", - "x-ms-client-request-id" : "d1d2eabc-8937-482d-8109-cf7b95b573e1", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.3)", + "x-ms-client-request-id" : "875e236c-3cb1-4b3e-b425-efd9d200a653", "Content-Type" : "application/json" }, "Response" : { "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1186", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "201", - "Date" : "Fri, 13 Jan 2023 02:23:14 GMT", - "x-ms-correlation-request-id" : "6ff2dd23-f5ac-4fcf-bf94-1828dec76acd", + "Date" : "Thu, 20 Apr 2023 03:27:24 GMT", + "x-ms-correlation-request-id" : "87bc8115-f8fc-4f6b-8517-bc2cf3b7746a", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20230113T022314Z:6ff2dd23-f5ac-4fcf-bf94-1828dec76acd", + "x-ms-routing-request-id" : "JAPANEAST:20230420T032724Z:87bc8115-f8fc-4f6b-8517-bc2cf3b7746a", "Expires" : "-1", "Content-Length" : "225", - "x-ms-request-id" : "6ff2dd23-f5ac-4fcf-bf94-1828dec76acd", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43408\",\"name\":\"javacsmrg43408\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "x-ms-request-id" : "87bc8115-f8fc-4f6b-8517-bc2cf3b7746a", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg69500\",\"name\":\"javacsmrg69500\",\"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/javacsmrg43408/providers/Microsoft.Network/virtualNetworks/vmssvnet?api-version=2022-09-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg69500/providers/Microsoft.Network/virtualNetworks/vmssvnet?api-version=2022-09-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.23.0-beta.1 (17.0.3.1; Mac OS X; 11.7.2)", - "x-ms-client-request-id" : "a49314ec-7f36-4a39-9e21-bdb7f0e49c06", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.3)", + "x-ms-client-request-id" : "e0c41928-737c-4a2f-b4b1-f326dd9064bc", "Content-Type" : "application/json" }, "Response" : { + "azure-asyncnotification" : "Enabled", "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1185", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", "Pragma" : "no-cache", - "Azure-AsyncNotification" : "Enabled", "StatusCode" : "201", - "Date" : "Fri, 13 Jan 2023 02:23:17 GMT", - "x-ms-correlation-request-id" : "e1c4c744-5175-4c1b-9442-70d1345b2b21", - "x-ms-arm-service-request-id" : "bc8c0ae7-7189-4ab3-8b1e-dcc5f06c244c", + "Date" : "Thu, 20 Apr 2023 03:27:27 GMT", + "x-ms-correlation-request-id" : "9ad1ca4b-6937-45ea-8096-e6d3e7215028", + "x-ms-arm-service-request-id" : "57be2c48-884e-481e-b8d1-82e3c025adda", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Retry-After" : "0", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20230113T022317Z:e1c4c744-5175-4c1b-9442-70d1345b2b21", + "x-ms-routing-request-id" : "JAPANEAST:20230420T032727Z:9ad1ca4b-6937-45ea-8096-e6d3e7215028", "Expires" : "-1", "Content-Length" : "1291", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/314d31b3-7521-449e-8f73-a3cdb5d5cce5?api-version=2022-09-01", - "x-ms-request-id" : "314d31b3-7521-449e-8f73-a3cdb5d5cce5", - "Body" : "{\r\n \"name\": \"vmssvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43408/providers/Microsoft.Network/virtualNetworks/vmssvnet\",\r\n \"etag\": \"W/\\\"94979ff5-f3e4-473c-a38c-51ed0ae6c913\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"6c812055-2178-4ce4-8260-d99ec07e819f\",\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/javacsmrg43408/providers/Microsoft.Network/virtualNetworks/vmssvnet/subnets/subnet1\",\r\n \"etag\": \"W/\\\"94979ff5-f3e4-473c-a38c-51ed0ae6c913\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\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 }\r\n}", - "x-ms-client-request-id" : "a49314ec-7f36-4a39-9e21-bdb7f0e49c06", + "x-ms-request-id" : "2ec754b8-591b-4259-a3cf-7ddf767db92d", + "Body" : "{\r\n \"name\": \"vmssvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg69500/providers/Microsoft.Network/virtualNetworks/vmssvnet\",\r\n \"etag\": \"W/\\\"441fc129-72d7-486b-8036-66877bec28a4\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"c8c11871-5756-44bc-87d8-562edb0489cd\",\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/javacsmrg69500/providers/Microsoft.Network/virtualNetworks/vmssvnet/subnets/subnet1\",\r\n \"etag\": \"W/\\\"441fc129-72d7-486b-8036-66877bec28a4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\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 }\r\n}", + "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2ec754b8-591b-4259-a3cf-7ddf767db92d?api-version=2022-09-01", + "x-ms-client-request-id" : "e0c41928-737c-4a2f-b4b1-f326dd9064bc", "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/314d31b3-7521-449e-8f73-a3cdb5d5cce5?api-version=2022-09-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2ec754b8-591b-4259-a3cf-7ddf767db92d?api-version=2022-09-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.23.0-beta.1 (17.0.3.1; Mac OS X; 11.7.2)", - "x-ms-client-request-id" : "80eca599-adea-4ddd-b598-eb9d6aaad54d" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.3)", + "x-ms-client-request-id" : "59e6ef67-6665-4083-8926-f6e491b29f84" }, "Response" : { "Server" : "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" : "11994", + "x-ms-ratelimit-remaining-subscription-reads" : "11999", "StatusCode" : "200", - "x-ms-correlation-request-id" : "a37e2a7f-dc34-4220-814b-ef36f88e8490", - "Date" : "Fri, 13 Jan 2023 02:23:20 GMT", - "x-ms-arm-service-request-id" : "d9f13684-32c4-458f-a325-a4cf8aa43b2d", + "x-ms-correlation-request-id" : "f1a086bd-2f31-453c-a969-388710c63e64", + "Date" : "Thu, 20 Apr 2023 03:27:30 GMT", + "x-ms-arm-service-request-id" : "10b3aea0-34fd-40d7-91b7-dcc9e723cde9", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20230113T022320Z:a37e2a7f-dc34-4220-814b-ef36f88e8490", + "x-ms-routing-request-id" : "JAPANEAST:20230420T032730Z:f1a086bd-2f31-453c-a969-388710c63e64", "Expires" : "-1", "Content-Length" : "29", - "x-ms-request-id" : "9a61c0a1-6741-4947-9d0c-8da1081c3fbb", + "x-ms-request-id" : "238987e9-cb18-409a-9136-b3a390afae8f", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "x-ms-client-request-id" : "80eca599-adea-4ddd-b598-eb9d6aaad54d", + "x-ms-client-request-id" : "59e6ef67-6665-4083-8926-f6e491b29f84", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43408/providers/Microsoft.Network/virtualNetworks/vmssvnet?api-version=2022-09-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg69500/providers/Microsoft.Network/virtualNetworks/vmssvnet?api-version=2022-09-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.23.0-beta.1 (17.0.3.1; Mac OS X; 11.7.2)", - "x-ms-client-request-id" : "61820b54-4d96-4143-b04a-ea55a6ce03fa" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.3)", + "x-ms-client-request-id" : "f20a06c4-4abf-4680-9e99-4e2dc28242a7" }, "Response" : { "Server" : "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" : "11998", + "x-ms-ratelimit-remaining-subscription-reads" : "11999", "StatusCode" : "200", - "x-ms-correlation-request-id" : "7f1fe708-57a2-449f-b50a-9a3c4a73f8e7", - "Date" : "Fri, 13 Jan 2023 02:23:21 GMT", - "x-ms-arm-service-request-id" : "d9c3425b-2712-48cb-a166-5e4702d4982a", + "x-ms-correlation-request-id" : "c172815e-470b-4e48-bf0e-eceeed85694b", + "Date" : "Thu, 20 Apr 2023 03:27:30 GMT", + "x-ms-arm-service-request-id" : "d4c432e3-1e98-4103-8f56-2848269492a8", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0f2ff8b2-907f-4e22-b6f4-3074abdb05f0\"", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20230113T022321Z:7f1fe708-57a2-449f-b50a-9a3c4a73f8e7", + "ETag" : "W/\"085a368b-a78e-4414-b6a2-71cad87e201f\"", + "x-ms-routing-request-id" : "JAPANEAST:20230420T032731Z:c172815e-470b-4e48-bf0e-eceeed85694b", "Expires" : "-1", "Content-Length" : "1293", - "x-ms-request-id" : "dc14e850-9041-43b8-b2b3-9ac5ce773192", - "Body" : "{\r\n \"name\": \"vmssvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43408/providers/Microsoft.Network/virtualNetworks/vmssvnet\",\r\n \"etag\": \"W/\\\"0f2ff8b2-907f-4e22-b6f4-3074abdb05f0\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6c812055-2178-4ce4-8260-d99ec07e819f\",\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/javacsmrg43408/providers/Microsoft.Network/virtualNetworks/vmssvnet/subnets/subnet1\",\r\n \"etag\": \"W/\\\"0f2ff8b2-907f-4e22-b6f4-3074abdb05f0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\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 }\r\n}", - "x-ms-client-request-id" : "61820b54-4d96-4143-b04a-ea55a6ce03fa", + "x-ms-request-id" : "3b73a254-8e4d-40ff-90fc-dc69ebfeb0bf", + "Body" : "{\r\n \"name\": \"vmssvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg69500/providers/Microsoft.Network/virtualNetworks/vmssvnet\",\r\n \"etag\": \"W/\\\"085a368b-a78e-4414-b6a2-71cad87e201f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c8c11871-5756-44bc-87d8-562edb0489cd\",\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/javacsmrg69500/providers/Microsoft.Network/virtualNetworks/vmssvnet/subnets/subnet1\",\r\n \"etag\": \"W/\\\"085a368b-a78e-4414-b6a2-71cad87e201f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\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 }\r\n}", + "x-ms-client-request-id" : "f20a06c4-4abf-4680-9e99-4e2dc28242a7", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43408/providers/Microsoft.Compute/virtualMachineScaleSets/vmss48542?api-version=2023-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg69500/providers/Microsoft.Compute/virtualMachineScaleSets/vmss81183?api-version=2023-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.23.0-beta.1 (17.0.3.1; Mac OS X; 11.7.2)", - "x-ms-client-request-id" : "07ccb3ca-364a-46c9-8a08-ee1516c7bef5", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.3)", + "x-ms-client-request-id" : "e12fbeb0-0632-45b6-8e3e-0fbf231deb99", "Content-Type" : "application/json" }, "Response" : { "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", "x-ms-request-charge" : "7", "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1193", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", "Pragma" : "no-cache", "Azure-AsyncNotification" : "Enabled", "StatusCode" : "201", - "Date" : "Fri, 13 Jan 2023 02:23:26 GMT", - "x-ms-correlation-request-id" : "8b67bff6-d837-40cf-b89c-81bacebe9bb2", + "Date" : "Thu, 20 Apr 2023 03:27:34 GMT", + "x-ms-correlation-request-id" : "71df57f7-204e-4bed-a4db-02170e311e92", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Retry-After" : "0", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20230113T022326Z:8b67bff6-d837-40cf-b89c-81bacebe9bb2", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateVMScaleSet3Min;58,Microsoft.Compute/CreateVMScaleSet30Min;298,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1189,Microsoft.Compute/VmssQueuedVMOperations;0", + "x-ms-routing-request-id" : "JAPANEAST:20230420T032734Z:71df57f7-204e-4bed-a4db-02170e311e92", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/CreateVMScaleSet3Min;59,Microsoft.Compute/CreateVMScaleSet30Min;297,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1191,Microsoft.Compute/VmssQueuedVMOperations;0", "Expires" : "-1", "Content-Length" : "3728", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/4f1ff338-8e4d-480c-9a25-90ff28496785?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&api-version=2023-03-01", - "x-ms-request-id" : "4f1ff338-8e4d-480c-9a25-90ff28496785", - "Body" : "{\r\n \"name\": \"vmss48542\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43408/providers/Microsoft.Compute/virtualMachineScaleSets/vmss48542\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\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 \"orchestrationMode\": \"Uniform\",\r\n \"upgradePolicy\": {\r\n \"mode\": \"Manual\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss48542-vm\",\r\n \"adminUsername\": \"jvuser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/jvuser/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQCWDIO2KhzxW6WmZc1nKrf9SEbcLlce//+rq9EdrGgHtEc8a+sL6Nj1s01FhzBQi6OLRGuLeECfYp2yiIAbZDCENk8N1Sapu6WAaKlt5T3dRcqsQjE1CBCLWt7Zb8h+w0ekqiEnn+WCNNxFvegYrVuj3C+VUwyO6D5x46ODOOq5QQ==\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43408/providers/Microsoft.Network/virtualNetworks/vmssvnet/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\"}}]}}]},\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Monitor\",\r\n \"type\": \"AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": \"1.0\",\r\n \"settings\": {\"GCS_AUTO_CONFIG\":true}\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Security.Monitoring\",\r\n \"type\": \"AzureSecurityLinuxAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": {\"enableGenevaUpload\":true,\"enableAutoConfig\":true,\"reportSuccessOnUnsupportedDistro\":true}\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\": \"d9205783-de26-498b-87ba-79ef84d1674f\",\r\n \"timeCreated\": \"2023-01-13T02:23:23.95762+00:00\"\r\n }\r\n}", - "x-ms-client-request-id" : "07ccb3ca-364a-46c9-8a08-ee1516c7bef5", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/c2d9687b-a3a9-4d36-8bec-41c7e1196e20?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&api-version=2023-03-01", + "x-ms-request-id" : "c2d9687b-a3a9-4d36-8bec-41c7e1196e20", + "Body" : "{\r\n \"name\": \"vmss81183\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg69500/providers/Microsoft.Compute/virtualMachineScaleSets/vmss81183\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\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 \"orchestrationMode\": \"Uniform\",\r\n \"upgradePolicy\": {\r\n \"mode\": \"Manual\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss81183-vm\",\r\n \"adminUsername\": \"jvuser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/jvuser/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQCoYxUat8P0RpwJvxfrkMyXyGWpWiXQKc9KCL2eV4h0h/wpK6JTkTCXWvJg7VawBWdXTbjLJZVFrigASypuiE9uvLbX/xcqLwTqD+8cP2vlIg/gCWkVvGiz6NpvqeAFi443mx1gIWzuiQ4leXy4CGEzuphl5uXymZwiCqjF4zCJzQ==\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg69500/providers/Microsoft.Network/virtualNetworks/vmssvnet/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\"}}]}}]},\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Monitor\",\r\n \"type\": \"AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": \"1.0\",\r\n \"settings\": {\"GCS_AUTO_CONFIG\":true}\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Security.Monitoring\",\r\n \"type\": \"AzureSecurityLinuxAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": {\"enableGenevaUpload\":true,\"enableAutoConfig\":true,\"reportSuccessOnUnsupportedDistro\":true}\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\": \"7dea444a-9124-409e-bbe4-41279b474df3\",\r\n \"timeCreated\": \"2023-04-20T03:27:33.42564+00:00\"\r\n }\r\n}", + "x-ms-client-request-id" : "e12fbeb0-0632-45b6-8e3e-0fbf231deb99", "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/4f1ff338-8e4d-480c-9a25-90ff28496785?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&api-version=2023-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/c2d9687b-a3a9-4d36-8bec-41c7e1196e20?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&api-version=2023-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.23.0-beta.1 (17.0.3.1; Mac OS X; 11.7.2)", - "x-ms-client-request-id" : "61dd24d8-c327-46f6-987c-8f0486a6f28f" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.3)", + "x-ms-client-request-id" : "d5718c82-11fd-4936-903f-b9d773b9e437" }, "Response" : { "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", - "x-ms-ratelimit-remaining-subscription-reads" : "11983", + "x-ms-ratelimit-remaining-subscription-reads" : "11998", "StatusCode" : "200", - "x-ms-correlation-request-id" : "46d25cb4-32b7-4c60-a2ed-ea505f199d0b", - "Date" : "Fri, 13 Jan 2023 02:23:35 GMT", + "x-ms-correlation-request-id" : "dbdd2bda-d18f-4704-a00e-f9da8456a0c2", + "Date" : "Thu, 20 Apr 2023 03:27:45 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", "Retry-After" : "0", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29986", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20230113T022336Z:46d25cb4-32b7-4c60-a2ed-ea505f199d0b", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29971", + "x-ms-routing-request-id" : "JAPANEAST:20230420T032745Z:dbdd2bda-d18f-4704-a00e-f9da8456a0c2", "Expires" : "-1", "Content-Length" : "134", - "x-ms-request-id" : "ac6b8afd-1092-486c-9bcc-4f3247ae23c9", - "Body" : "{\r\n \"startTime\": \"2023-01-13T02:23:23.9420017+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4f1ff338-8e4d-480c-9a25-90ff28496785\"\r\n}", - "x-ms-client-request-id" : "61dd24d8-c327-46f6-987c-8f0486a6f28f", + "x-ms-request-id" : "b20bbb7e-ed8d-48e7-abb2-613bce8ae6a4", + "Body" : "{\r\n \"startTime\": \"2023-04-20T03:27:33.4100332+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c2d9687b-a3a9-4d36-8bec-41c7e1196e20\"\r\n}", + "x-ms-client-request-id" : "d5718c82-11fd-4936-903f-b9d773b9e437", "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/4f1ff338-8e4d-480c-9a25-90ff28496785?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&api-version=2023-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/c2d9687b-a3a9-4d36-8bec-41c7e1196e20?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&api-version=2023-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.23.0-beta.1 (17.0.3.1; Mac OS X; 11.7.2)", - "x-ms-client-request-id" : "e65a8e77-7879-4fa2-9077-9015870eb86e" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.3)", + "x-ms-client-request-id" : "4d336bc0-ee59-4898-8b93-3ae2cd80fe1b" }, "Response" : { "Server" : "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" : "11987", + "x-ms-ratelimit-remaining-subscription-reads" : "11998", "StatusCode" : "200", - "x-ms-correlation-request-id" : "20c3ea20-bf95-4b9a-a5db-74e36a358191", - "Date" : "Fri, 13 Jan 2023 02:24:36 GMT", + "x-ms-correlation-request-id" : "9fb92854-8b06-4614-b1cf-b81cfe358684", + "Date" : "Thu, 20 Apr 2023 03:28:46 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14945,Microsoft.Compute/GetOperation30Min;29945", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20230113T022437Z:20c3ea20-bf95-4b9a-a5db-74e36a358191", + "Retry-After" : "0", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29969", + "x-ms-routing-request-id" : "JAPANEAST:20230420T032846Z:9fb92854-8b06-4614-b1cf-b81cfe358684", "Expires" : "-1", "Content-Length" : "134", - "x-ms-request-id" : "2a1af407-0ec8-41a8-a102-ac37943bec6e", - "Body" : "{\r\n \"startTime\": \"2023-01-13T02:23:23.9420017+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4f1ff338-8e4d-480c-9a25-90ff28496785\"\r\n}", - "x-ms-client-request-id" : "e65a8e77-7879-4fa2-9077-9015870eb86e", + "x-ms-request-id" : "ccd07120-2971-43af-8494-3742bf37a3df", + "Body" : "{\r\n \"startTime\": \"2023-04-20T03:27:33.4100332+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c2d9687b-a3a9-4d36-8bec-41c7e1196e20\"\r\n}", + "x-ms-client-request-id" : "4d336bc0-ee59-4898-8b93-3ae2cd80fe1b", "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/4f1ff338-8e4d-480c-9a25-90ff28496785?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&api-version=2023-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/c2d9687b-a3a9-4d36-8bec-41c7e1196e20?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&api-version=2023-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.23.0-beta.1 (17.0.3.1; Mac OS X; 11.7.2)", - "x-ms-client-request-id" : "799f7c7f-e6a0-4502-98bf-86f99d2efe18" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.3)", + "x-ms-client-request-id" : "3b7a1ef6-fad4-460c-bdea-2351c386cd27" }, "Response" : { "Server" : "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" : "11973", + "x-ms-ratelimit-remaining-subscription-reads" : "11997", "StatusCode" : "200", - "x-ms-correlation-request-id" : "fed57678-8738-4a57-ab53-10141c945ea6", - "Date" : "Fri, 13 Jan 2023 02:25:07 GMT", + "x-ms-correlation-request-id" : "7834088f-68a9-4be6-9fd8-73e5ab0d78bc", + "Date" : "Thu, 20 Apr 2023 03:29:16 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14914,Microsoft.Compute/GetOperation30Min;29911", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20230113T022508Z:fed57678-8738-4a57-ab53-10141c945ea6", + "Retry-After" : "0", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29968", + "x-ms-routing-request-id" : "JAPANEAST:20230420T032917Z:7834088f-68a9-4be6-9fd8-73e5ab0d78bc", "Expires" : "-1", "Content-Length" : "134", - "x-ms-request-id" : "eb55c01f-92c5-420e-8b30-dd1f690e54c4", - "Body" : "{\r\n \"startTime\": \"2023-01-13T02:23:23.9420017+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4f1ff338-8e4d-480c-9a25-90ff28496785\"\r\n}", - "x-ms-client-request-id" : "799f7c7f-e6a0-4502-98bf-86f99d2efe18", + "x-ms-request-id" : "666f7877-dc2d-4b85-bae6-0f7f413e89ba", + "Body" : "{\r\n \"startTime\": \"2023-04-20T03:27:33.4100332+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c2d9687b-a3a9-4d36-8bec-41c7e1196e20\"\r\n}", + "x-ms-client-request-id" : "3b7a1ef6-fad4-460c-bdea-2351c386cd27", "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/4f1ff338-8e4d-480c-9a25-90ff28496785?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&api-version=2023-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/c2d9687b-a3a9-4d36-8bec-41c7e1196e20?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&api-version=2023-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.23.0-beta.1 (17.0.3.1; Mac OS X; 11.7.2)", - "x-ms-client-request-id" : "0b35df65-480d-4db3-9cc1-49fa5f90177a" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.3)", + "x-ms-client-request-id" : "42ea0835-eddc-4c29-b537-b9589c2b09f8" }, "Response" : { "Server" : "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" : "11991", + "x-ms-ratelimit-remaining-subscription-reads" : "11997", "StatusCode" : "200", - "x-ms-correlation-request-id" : "afc25af1-0831-4f44-9d7c-92d80b8f11b6", - "Date" : "Fri, 13 Jan 2023 02:25:39 GMT", + "x-ms-correlation-request-id" : "f840c7ce-d9db-4151-a421-6993e2d2e10e", + "Date" : "Thu, 20 Apr 2023 03:29:47 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14877,Microsoft.Compute/GetOperation30Min;29871", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20230113T022539Z:afc25af1-0831-4f44-9d7c-92d80b8f11b6", + "Retry-After" : "0", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29966", + "x-ms-routing-request-id" : "JAPANEAST:20230420T032948Z:f840c7ce-d9db-4151-a421-6993e2d2e10e", "Expires" : "-1", "Content-Length" : "134", - "x-ms-request-id" : "a6606a61-0b16-4e60-b6d5-d06f5ea61cb2", - "Body" : "{\r\n \"startTime\": \"2023-01-13T02:23:23.9420017+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4f1ff338-8e4d-480c-9a25-90ff28496785\"\r\n}", - "x-ms-client-request-id" : "0b35df65-480d-4db3-9cc1-49fa5f90177a", + "x-ms-request-id" : "880c5b90-d419-4fdb-8a64-78bd0e1cb8b1", + "Body" : "{\r\n \"startTime\": \"2023-04-20T03:27:33.4100332+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c2d9687b-a3a9-4d36-8bec-41c7e1196e20\"\r\n}", + "x-ms-client-request-id" : "42ea0835-eddc-4c29-b537-b9589c2b09f8", "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/4f1ff338-8e4d-480c-9a25-90ff28496785?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&api-version=2023-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/c2d9687b-a3a9-4d36-8bec-41c7e1196e20?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&api-version=2023-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.23.0-beta.1 (17.0.3.1; Mac OS X; 11.7.2)", - "x-ms-client-request-id" : "7fb0107e-7a89-45b9-9947-86f13ea01fe0" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.3)", + "x-ms-client-request-id" : "8e5db529-0bba-40cf-8b2d-7a18ab055d5c" }, "Response" : { "Server" : "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" : "11958", + "x-ms-ratelimit-remaining-subscription-reads" : "11996", "StatusCode" : "200", - "x-ms-correlation-request-id" : "bfdecfd0-7479-4075-973a-2523842880ee", - "Date" : "Fri, 13 Jan 2023 02:26:08 GMT", + "x-ms-correlation-request-id" : "fee64cb9-3753-4ebe-acf7-ca90b47fb068", + "Date" : "Thu, 20 Apr 2023 03:30:18 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14837,Microsoft.Compute/GetOperation30Min;29827", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20230113T022609Z:bfdecfd0-7479-4075-973a-2523842880ee", + "Retry-After" : "0", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29965", + "x-ms-routing-request-id" : "JAPANEAST:20230420T033018Z:fee64cb9-3753-4ebe-acf7-ca90b47fb068", "Expires" : "-1", "Content-Length" : "134", - "x-ms-request-id" : "58f07d3b-6253-42e0-a590-74b2f1857154", - "Body" : "{\r\n \"startTime\": \"2023-01-13T02:23:23.9420017+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4f1ff338-8e4d-480c-9a25-90ff28496785\"\r\n}", - "x-ms-client-request-id" : "7fb0107e-7a89-45b9-9947-86f13ea01fe0", + "x-ms-request-id" : "82f159d3-5784-421e-80b5-33a3f57916bf", + "Body" : "{\r\n \"startTime\": \"2023-04-20T03:27:33.4100332+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c2d9687b-a3a9-4d36-8bec-41c7e1196e20\"\r\n}", + "x-ms-client-request-id" : "8e5db529-0bba-40cf-8b2d-7a18ab055d5c", "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/4f1ff338-8e4d-480c-9a25-90ff28496785?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&api-version=2023-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/c2d9687b-a3a9-4d36-8bec-41c7e1196e20?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&api-version=2023-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.23.0-beta.1 (17.0.3.1; Mac OS X; 11.7.2)", - "x-ms-client-request-id" : "6711156f-4ac2-4cdb-924c-a2b908786783" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.3)", + "x-ms-client-request-id" : "b9a4a6a4-5301-4527-80e0-06f0f4b56c9d" }, "Response" : { "Server" : "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" : "11971", + "x-ms-ratelimit-remaining-subscription-reads" : "11996", "StatusCode" : "200", - "x-ms-correlation-request-id" : "f2d567a2-4cf7-4c64-a087-0405d887793e", - "Date" : "Fri, 13 Jan 2023 02:26:38 GMT", + "x-ms-correlation-request-id" : "d85a34c0-4620-4622-b2e7-624f3f06e4ad", + "Date" : "Thu, 20 Apr 2023 03:30:49 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14827,Microsoft.Compute/GetOperation30Min;29799", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20230113T022639Z:f2d567a2-4cf7-4c64-a087-0405d887793e", + "Retry-After" : "0", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29963", + "x-ms-routing-request-id" : "JAPANEAST:20230420T033049Z:d85a34c0-4620-4622-b2e7-624f3f06e4ad", "Expires" : "-1", "Content-Length" : "134", - "x-ms-request-id" : "e43f5acf-939f-4806-aea6-3f00043f1bb9", - "Body" : "{\r\n \"startTime\": \"2023-01-13T02:23:23.9420017+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4f1ff338-8e4d-480c-9a25-90ff28496785\"\r\n}", - "x-ms-client-request-id" : "6711156f-4ac2-4cdb-924c-a2b908786783", + "x-ms-request-id" : "b0f4391a-f6d8-4e5e-9352-26a5e7333e62", + "Body" : "{\r\n \"startTime\": \"2023-04-20T03:27:33.4100332+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c2d9687b-a3a9-4d36-8bec-41c7e1196e20\"\r\n}", + "x-ms-client-request-id" : "b9a4a6a4-5301-4527-80e0-06f0f4b56c9d", "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/4f1ff338-8e4d-480c-9a25-90ff28496785?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&api-version=2023-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/c2d9687b-a3a9-4d36-8bec-41c7e1196e20?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&api-version=2023-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.23.0-beta.1 (17.0.3.1; Mac OS X; 11.7.2)", - "x-ms-client-request-id" : "9c79ef8b-f777-4272-8599-d33dd66582a7" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.3)", + "x-ms-client-request-id" : "85598a7d-0539-4764-a531-9134b9b3155f" }, "Response" : { "Server" : "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" : "11951", + "x-ms-ratelimit-remaining-subscription-reads" : "11995", "StatusCode" : "200", - "x-ms-correlation-request-id" : "baa0dda8-3054-48cd-8577-4fa12c3f65b0", - "Date" : "Fri, 13 Jan 2023 02:27:09 GMT", + "x-ms-correlation-request-id" : "b0dd24c6-7f40-42bd-b054-461453dc9a1a", + "Date" : "Thu, 20 Apr 2023 03:31:19 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14811,Microsoft.Compute/GetOperation30Min;29758", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20230113T022710Z:baa0dda8-3054-48cd-8577-4fa12c3f65b0", + "Retry-After" : "0", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29962", + "x-ms-routing-request-id" : "JAPANEAST:20230420T033119Z:b0dd24c6-7f40-42bd-b054-461453dc9a1a", "Expires" : "-1", "Content-Length" : "134", - "x-ms-request-id" : "a9bded8d-9aa4-462e-8455-97f049438819", - "Body" : "{\r\n \"startTime\": \"2023-01-13T02:23:23.9420017+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4f1ff338-8e4d-480c-9a25-90ff28496785\"\r\n}", - "x-ms-client-request-id" : "9c79ef8b-f777-4272-8599-d33dd66582a7", + "x-ms-request-id" : "98e39718-5a29-4327-94b4-7ca136babe84", + "Body" : "{\r\n \"startTime\": \"2023-04-20T03:27:33.4100332+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c2d9687b-a3a9-4d36-8bec-41c7e1196e20\"\r\n}", + "x-ms-client-request-id" : "85598a7d-0539-4764-a531-9134b9b3155f", "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/4f1ff338-8e4d-480c-9a25-90ff28496785?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&api-version=2023-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/c2d9687b-a3a9-4d36-8bec-41c7e1196e20?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&api-version=2023-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.23.0-beta.1 (17.0.3.1; Mac OS X; 11.7.2)", - "x-ms-client-request-id" : "383dbe0a-1275-46ec-8cf8-31245ca67acc" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.3)", + "x-ms-client-request-id" : "f9e23750-b8f6-4b61-b874-494c1ba36695" }, "Response" : { "Server" : "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" : "11980", + "x-ms-ratelimit-remaining-subscription-reads" : "11995", "StatusCode" : "200", - "x-ms-correlation-request-id" : "c7149377-89dd-4c3c-9c07-8545eeb205f8", - "Date" : "Fri, 13 Jan 2023 02:27:39 GMT", + "x-ms-correlation-request-id" : "0c92d9f0-b40b-4441-958b-7997ea84bfb6", + "Date" : "Thu, 20 Apr 2023 03:31:49 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14796,Microsoft.Compute/GetOperation30Min;29718", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20230113T022740Z:c7149377-89dd-4c3c-9c07-8545eeb205f8", + "Retry-After" : "0", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29960", + "x-ms-routing-request-id" : "JAPANEAST:20230420T033150Z:0c92d9f0-b40b-4441-958b-7997ea84bfb6", "Expires" : "-1", "Content-Length" : "134", - "x-ms-request-id" : "265eeb50-e01e-46d0-b5e9-c801fcfda7bb", - "Body" : "{\r\n \"startTime\": \"2023-01-13T02:23:23.9420017+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4f1ff338-8e4d-480c-9a25-90ff28496785\"\r\n}", - "x-ms-client-request-id" : "383dbe0a-1275-46ec-8cf8-31245ca67acc", + "x-ms-request-id" : "07422160-bd83-4892-bcca-4c23461302c6", + "Body" : "{\r\n \"startTime\": \"2023-04-20T03:27:33.4100332+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c2d9687b-a3a9-4d36-8bec-41c7e1196e20\"\r\n}", + "x-ms-client-request-id" : "f9e23750-b8f6-4b61-b874-494c1ba36695", "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/4f1ff338-8e4d-480c-9a25-90ff28496785?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&api-version=2023-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/c2d9687b-a3a9-4d36-8bec-41c7e1196e20?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&api-version=2023-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.23.0-beta.1 (17.0.3.1; Mac OS X; 11.7.2)", - "x-ms-client-request-id" : "978d9d86-4412-44d5-bf09-d85867312b5f" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.3)", + "x-ms-client-request-id" : "c215dcf6-4f74-48bb-9f4d-072c5a2a2899" }, "Response" : { "Server" : "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" : "11935", + "x-ms-ratelimit-remaining-subscription-reads" : "11994", "StatusCode" : "200", - "x-ms-correlation-request-id" : "1714e381-7eb8-424d-b070-ab7050d7bda1", - "Date" : "Fri, 13 Jan 2023 02:28:10 GMT", + "x-ms-correlation-request-id" : "36024552-2945-4407-adfc-875ea57b965c", + "Date" : "Thu, 20 Apr 2023 03:32:20 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14803,Microsoft.Compute/GetOperation30Min;29683", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20230113T022810Z:1714e381-7eb8-424d-b070-ab7050d7bda1", + "Retry-After" : "0", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29959", + "x-ms-routing-request-id" : "JAPANEAST:20230420T033220Z:36024552-2945-4407-adfc-875ea57b965c", "Expires" : "-1", "Content-Length" : "134", - "x-ms-request-id" : "8159eee9-3775-4048-8945-bb17a1118bbb", - "Body" : "{\r\n \"startTime\": \"2023-01-13T02:23:23.9420017+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4f1ff338-8e4d-480c-9a25-90ff28496785\"\r\n}", - "x-ms-client-request-id" : "978d9d86-4412-44d5-bf09-d85867312b5f", + "x-ms-request-id" : "bd3a68a2-12b3-49eb-9aca-f6016e550eb5", + "Body" : "{\r\n \"startTime\": \"2023-04-20T03:27:33.4100332+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c2d9687b-a3a9-4d36-8bec-41c7e1196e20\"\r\n}", + "x-ms-client-request-id" : "c215dcf6-4f74-48bb-9f4d-072c5a2a2899", "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/4f1ff338-8e4d-480c-9a25-90ff28496785?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&api-version=2023-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/c2d9687b-a3a9-4d36-8bec-41c7e1196e20?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&api-version=2023-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.23.0-beta.1 (17.0.3.1; Mac OS X; 11.7.2)", - "x-ms-client-request-id" : "7c721bfa-7563-44aa-8b80-f891121d9d90" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.3)", + "x-ms-client-request-id" : "ceabaeb1-e683-40c5-ab1e-5249b6962478" }, "Response" : { "Server" : "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" : "11977", + "x-ms-ratelimit-remaining-subscription-reads" : "11994", "StatusCode" : "200", - "x-ms-correlation-request-id" : "e26b6303-5322-4ea7-a17e-6b7d2b658703", - "Date" : "Fri, 13 Jan 2023 02:28:40 GMT", + "x-ms-correlation-request-id" : "f93c3d18-8d0c-4c90-b990-171e3c33aae8", + "Date" : "Thu, 20 Apr 2023 03:32:50 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14804,Microsoft.Compute/GetOperation30Min;29645", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20230113T022841Z:e26b6303-5322-4ea7-a17e-6b7d2b658703", + "Retry-After" : "0", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29957", + "x-ms-routing-request-id" : "JAPANEAST:20230420T033250Z:f93c3d18-8d0c-4c90-b990-171e3c33aae8", "Expires" : "-1", "Content-Length" : "134", - "x-ms-request-id" : "eafdc91c-0a6e-4e14-8b7d-ff8f682ff98f", - "Body" : "{\r\n \"startTime\": \"2023-01-13T02:23:23.9420017+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4f1ff338-8e4d-480c-9a25-90ff28496785\"\r\n}", - "x-ms-client-request-id" : "7c721bfa-7563-44aa-8b80-f891121d9d90", + "x-ms-request-id" : "32ee6d5e-2a66-4860-8820-27b33424e4c7", + "Body" : "{\r\n \"startTime\": \"2023-04-20T03:27:33.4100332+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c2d9687b-a3a9-4d36-8bec-41c7e1196e20\"\r\n}", + "x-ms-client-request-id" : "ceabaeb1-e683-40c5-ab1e-5249b6962478", "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/4f1ff338-8e4d-480c-9a25-90ff28496785?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&api-version=2023-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/c2d9687b-a3a9-4d36-8bec-41c7e1196e20?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&api-version=2023-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.23.0-beta.1 (17.0.3.1; Mac OS X; 11.7.2)", - "x-ms-client-request-id" : "30219168-5055-4b60-8d28-f70178baf877" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.3)", + "x-ms-client-request-id" : "67756a2d-79b8-427f-889a-56835db64e1a" }, "Response" : { "Server" : "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" : "11929", + "x-ms-ratelimit-remaining-subscription-reads" : "11993", "StatusCode" : "200", - "x-ms-correlation-request-id" : "2425e1a0-4727-4477-a6ab-c64f47982144", - "Date" : "Fri, 13 Jan 2023 02:29:10 GMT", + "x-ms-correlation-request-id" : "d1acd07b-80cb-4a15-b3dc-03447272356f", + "Date" : "Thu, 20 Apr 2023 03:33:21 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14810,Microsoft.Compute/GetOperation30Min;29619", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20230113T022911Z:2425e1a0-4727-4477-a6ab-c64f47982144", + "Retry-After" : "0", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29956", + "x-ms-routing-request-id" : "JAPANEAST:20230420T033321Z:d1acd07b-80cb-4a15-b3dc-03447272356f", "Expires" : "-1", "Content-Length" : "134", - "x-ms-request-id" : "a9d72c1e-2cc9-412d-9598-20990ef7756b", - "Body" : "{\r\n \"startTime\": \"2023-01-13T02:23:23.9420017+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4f1ff338-8e4d-480c-9a25-90ff28496785\"\r\n}", - "x-ms-client-request-id" : "30219168-5055-4b60-8d28-f70178baf877", + "x-ms-request-id" : "6f395b87-4f59-4aee-b3bf-68a319f655d5", + "Body" : "{\r\n \"startTime\": \"2023-04-20T03:27:33.4100332+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c2d9687b-a3a9-4d36-8bec-41c7e1196e20\"\r\n}", + "x-ms-client-request-id" : "67756a2d-79b8-427f-889a-56835db64e1a", "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/4f1ff338-8e4d-480c-9a25-90ff28496785?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&api-version=2023-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/c2d9687b-a3a9-4d36-8bec-41c7e1196e20?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&api-version=2023-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.23.0-beta.1 (17.0.3.1; Mac OS X; 11.7.2)", - "x-ms-client-request-id" : "10ed8de8-7835-40a3-ab67-ba8c6c744e98" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.3)", + "x-ms-client-request-id" : "b30cec32-f474-4039-b760-cb104a9caaef" }, "Response" : { "Server" : "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" : "11964", + "x-ms-ratelimit-remaining-subscription-reads" : "11993", "StatusCode" : "200", - "x-ms-correlation-request-id" : "4f9603fd-5947-4c26-aeb3-2ac488d0d10e", - "Date" : "Fri, 13 Jan 2023 02:29:42 GMT", + "x-ms-correlation-request-id" : "c031a8f0-3f2d-419d-a0db-89c2cd3dcb7b", + "Date" : "Thu, 20 Apr 2023 03:33:51 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14809,Microsoft.Compute/GetOperation30Min;29587", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20230113T022942Z:4f9603fd-5947-4c26-aeb3-2ac488d0d10e", + "Retry-After" : "0", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29954", + "x-ms-routing-request-id" : "JAPANEAST:20230420T033352Z:c031a8f0-3f2d-419d-a0db-89c2cd3dcb7b", "Expires" : "-1", "Content-Length" : "134", - "x-ms-request-id" : "2be590fa-1666-49a0-ae93-9563ce6751aa", - "Body" : "{\r\n \"startTime\": \"2023-01-13T02:23:23.9420017+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4f1ff338-8e4d-480c-9a25-90ff28496785\"\r\n}", - "x-ms-client-request-id" : "10ed8de8-7835-40a3-ab67-ba8c6c744e98", + "x-ms-request-id" : "79e1b7d1-3553-4ad8-8272-55c131047e5c", + "Body" : "{\r\n \"startTime\": \"2023-04-20T03:27:33.4100332+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c2d9687b-a3a9-4d36-8bec-41c7e1196e20\"\r\n}", + "x-ms-client-request-id" : "b30cec32-f474-4039-b760-cb104a9caaef", "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/4f1ff338-8e4d-480c-9a25-90ff28496785?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&api-version=2023-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/c2d9687b-a3a9-4d36-8bec-41c7e1196e20?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&api-version=2023-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.23.0-beta.1 (17.0.3.1; Mac OS X; 11.7.2)", - "x-ms-client-request-id" : "7a5502da-887a-4548-a6a3-d90220b200c6" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.3)", + "x-ms-client-request-id" : "be2e1114-0ffa-43a0-87e7-edb50a82da2c" }, "Response" : { "Server" : "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" : "11963", + "x-ms-ratelimit-remaining-subscription-reads" : "11992", "StatusCode" : "200", - "x-ms-correlation-request-id" : "295d6ae4-2221-4fcf-b424-f9d471e55bf5", - "Date" : "Fri, 13 Jan 2023 02:30:11 GMT", + "x-ms-correlation-request-id" : "526a60e9-b7eb-4753-88d7-f3d78defe46f", + "Date" : "Thu, 20 Apr 2023 03:34:21 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14824,Microsoft.Compute/GetOperation30Min;29554", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20230113T023012Z:295d6ae4-2221-4fcf-b424-f9d471e55bf5", + "Retry-After" : "0", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29953", + "x-ms-routing-request-id" : "JAPANEAST:20230420T033422Z:526a60e9-b7eb-4753-88d7-f3d78defe46f", "Expires" : "-1", "Content-Length" : "134", - "x-ms-request-id" : "2cea603b-06a1-44d3-9a9e-848bf08ee898", - "Body" : "{\r\n \"startTime\": \"2023-01-13T02:23:23.9420017+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4f1ff338-8e4d-480c-9a25-90ff28496785\"\r\n}", - "x-ms-client-request-id" : "7a5502da-887a-4548-a6a3-d90220b200c6", + "x-ms-request-id" : "2da97a14-c88f-48bd-ac70-276b214f0d05", + "Body" : "{\r\n \"startTime\": \"2023-04-20T03:27:33.4100332+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c2d9687b-a3a9-4d36-8bec-41c7e1196e20\"\r\n}", + "x-ms-client-request-id" : "be2e1114-0ffa-43a0-87e7-edb50a82da2c", "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/4f1ff338-8e4d-480c-9a25-90ff28496785?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&api-version=2023-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/c2d9687b-a3a9-4d36-8bec-41c7e1196e20?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&api-version=2023-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.23.0-beta.1 (17.0.3.1; Mac OS X; 11.7.2)", - "x-ms-client-request-id" : "4445128f-41d0-4574-8dce-cc2473de6da3" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.3)", + "x-ms-client-request-id" : "6c7e1875-0a83-4c6b-b594-85b54ce37a36" }, "Response" : { "Server" : "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" : "11927", + "x-ms-ratelimit-remaining-subscription-reads" : "11992", "StatusCode" : "200", - "x-ms-correlation-request-id" : "1de98b3e-a49b-498f-85fe-9da47e9f62f2", - "Date" : "Fri, 13 Jan 2023 02:30:42 GMT", + "x-ms-correlation-request-id" : "1f828ee7-c503-4ca0-b1dc-8631863c615f", + "Date" : "Thu, 20 Apr 2023 03:34:52 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14827,Microsoft.Compute/GetOperation30Min;29521", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20230113T023043Z:1de98b3e-a49b-498f-85fe-9da47e9f62f2", + "Retry-After" : "0", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29951", + "x-ms-routing-request-id" : "JAPANEAST:20230420T033453Z:1f828ee7-c503-4ca0-b1dc-8631863c615f", "Expires" : "-1", "Content-Length" : "134", - "x-ms-request-id" : "24b79829-75f6-4fa6-b13a-518c4b6d4985", - "Body" : "{\r\n \"startTime\": \"2023-01-13T02:23:23.9420017+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4f1ff338-8e4d-480c-9a25-90ff28496785\"\r\n}", - "x-ms-client-request-id" : "4445128f-41d0-4574-8dce-cc2473de6da3", + "x-ms-request-id" : "86bb963f-2718-4686-a888-60c1e1ff9391", + "Body" : "{\r\n \"startTime\": \"2023-04-20T03:27:33.4100332+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c2d9687b-a3a9-4d36-8bec-41c7e1196e20\"\r\n}", + "x-ms-client-request-id" : "6c7e1875-0a83-4c6b-b594-85b54ce37a36", "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/4f1ff338-8e4d-480c-9a25-90ff28496785?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&api-version=2023-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/c2d9687b-a3a9-4d36-8bec-41c7e1196e20?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&api-version=2023-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.23.0-beta.1 (17.0.3.1; Mac OS X; 11.7.2)", - "x-ms-client-request-id" : "ba6e070f-7043-4db7-98a1-6e4fa26ea348" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.3)", + "x-ms-client-request-id" : "9956f084-887c-4659-82e5-d4edc975bffc" }, "Response" : { "Server" : "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" : "11938", + "x-ms-ratelimit-remaining-subscription-reads" : "11991", "StatusCode" : "200", - "x-ms-correlation-request-id" : "33ed9c51-10d7-49fa-96f5-5130dd263657", - "Date" : "Fri, 13 Jan 2023 02:31:13 GMT", + "x-ms-correlation-request-id" : "7738d641-6fdb-45eb-a886-a75994182c0b", + "Date" : "Thu, 20 Apr 2023 03:35:23 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14847,Microsoft.Compute/GetOperation30Min;29510", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20230113T023113Z:33ed9c51-10d7-49fa-96f5-5130dd263657", + "Retry-After" : "0", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29950", + "x-ms-routing-request-id" : "JAPANEAST:20230420T033523Z:7738d641-6fdb-45eb-a886-a75994182c0b", "Expires" : "-1", "Content-Length" : "134", - "x-ms-request-id" : "6502163e-40e4-44b9-aefd-21f7f0c25b58", - "Body" : "{\r\n \"startTime\": \"2023-01-13T02:23:23.9420017+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4f1ff338-8e4d-480c-9a25-90ff28496785\"\r\n}", - "x-ms-client-request-id" : "ba6e070f-7043-4db7-98a1-6e4fa26ea348", + "x-ms-request-id" : "c18cee0f-c960-40bd-b91f-41174325663b", + "Body" : "{\r\n \"startTime\": \"2023-04-20T03:27:33.4100332+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c2d9687b-a3a9-4d36-8bec-41c7e1196e20\"\r\n}", + "x-ms-client-request-id" : "9956f084-887c-4659-82e5-d4edc975bffc", "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/4f1ff338-8e4d-480c-9a25-90ff28496785?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&api-version=2023-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/c2d9687b-a3a9-4d36-8bec-41c7e1196e20?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&api-version=2023-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.23.0-beta.1 (17.0.3.1; Mac OS X; 11.7.2)", - "x-ms-client-request-id" : "c715827b-67fe-458a-a781-cabe2a81bd0d" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.3)", + "x-ms-client-request-id" : "261f7efa-7daf-4256-b880-76e5a59be0ac" }, "Response" : { "Server" : "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" : "11957", + "x-ms-ratelimit-remaining-subscription-reads" : "11991", "StatusCode" : "200", - "x-ms-correlation-request-id" : "ef9edd3a-ebe1-4fe0-8e5b-d331d691b71b", - "Date" : "Fri, 13 Jan 2023 02:31:42 GMT", + "x-ms-correlation-request-id" : "5dc13252-3359-43ce-9950-cecccb009839", + "Date" : "Thu, 20 Apr 2023 03:35:53 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14855,Microsoft.Compute/GetOperation30Min;29485", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20230113T023143Z:ef9edd3a-ebe1-4fe0-8e5b-d331d691b71b", + "Retry-After" : "0", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29948", + "x-ms-routing-request-id" : "JAPANEAST:20230420T033554Z:5dc13252-3359-43ce-9950-cecccb009839", "Expires" : "-1", "Content-Length" : "134", - "x-ms-request-id" : "bf8cd185-f9d1-46c6-a25d-8c3b11eec569", - "Body" : "{\r\n \"startTime\": \"2023-01-13T02:23:23.9420017+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4f1ff338-8e4d-480c-9a25-90ff28496785\"\r\n}", - "x-ms-client-request-id" : "c715827b-67fe-458a-a781-cabe2a81bd0d", + "x-ms-request-id" : "d775f2cb-f408-4f63-8c10-bee590f70b70", + "Body" : "{\r\n \"startTime\": \"2023-04-20T03:27:33.4100332+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c2d9687b-a3a9-4d36-8bec-41c7e1196e20\"\r\n}", + "x-ms-client-request-id" : "261f7efa-7daf-4256-b880-76e5a59be0ac", "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/4f1ff338-8e4d-480c-9a25-90ff28496785?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&api-version=2023-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/c2d9687b-a3a9-4d36-8bec-41c7e1196e20?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&api-version=2023-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.23.0-beta.1 (17.0.3.1; Mac OS X; 11.7.2)", - "x-ms-client-request-id" : "ab372fe6-2632-40f3-8692-d5083b544ef8" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.3)", + "x-ms-client-request-id" : "9d223209-62f3-40be-89cb-70996bc53898" }, "Response" : { "Server" : "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" : "11962", + "x-ms-ratelimit-remaining-subscription-reads" : "11990", "StatusCode" : "200", - "x-ms-correlation-request-id" : "e066fb69-c7f2-4300-a2db-d1b6a1fcdb18", - "Date" : "Fri, 13 Jan 2023 02:32:13 GMT", + "x-ms-correlation-request-id" : "d0291df4-b711-4d11-8d1b-cbd689c6648b", + "Date" : "Thu, 20 Apr 2023 03:36:23 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14860,Microsoft.Compute/GetOperation30Min;29468", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20230113T023213Z:e066fb69-c7f2-4300-a2db-d1b6a1fcdb18", + "Retry-After" : "0", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29947", + "x-ms-routing-request-id" : "JAPANEAST:20230420T033624Z:d0291df4-b711-4d11-8d1b-cbd689c6648b", "Expires" : "-1", "Content-Length" : "134", - "x-ms-request-id" : "9ec968e6-0fbb-4751-815d-348ca07f3a3d", - "Body" : "{\r\n \"startTime\": \"2023-01-13T02:23:23.9420017+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4f1ff338-8e4d-480c-9a25-90ff28496785\"\r\n}", - "x-ms-client-request-id" : "ab372fe6-2632-40f3-8692-d5083b544ef8", + "x-ms-request-id" : "b7d7793f-9f1a-4725-bc50-12ca11b4e4e8", + "Body" : "{\r\n \"startTime\": \"2023-04-20T03:27:33.4100332+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c2d9687b-a3a9-4d36-8bec-41c7e1196e20\"\r\n}", + "x-ms-client-request-id" : "9d223209-62f3-40be-89cb-70996bc53898", "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/4f1ff338-8e4d-480c-9a25-90ff28496785?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&api-version=2023-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/c2d9687b-a3a9-4d36-8bec-41c7e1196e20?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&api-version=2023-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.23.0-beta.1 (17.0.3.1; Mac OS X; 11.7.2)", - "x-ms-client-request-id" : "43853a2d-1dc3-4ac2-b985-585e24bf70ac" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.3)", + "x-ms-client-request-id" : "38a46d1f-5b7e-44cd-a030-2c486c9250a5" }, "Response" : { "Server" : "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" : "11937", + "x-ms-ratelimit-remaining-subscription-reads" : "11990", "StatusCode" : "200", - "x-ms-correlation-request-id" : "2d925a07-03f1-45c1-96ca-ce382249469a", - "Date" : "Fri, 13 Jan 2023 02:32:43 GMT", + "x-ms-correlation-request-id" : "cb1a35ec-d883-48fa-871b-65c20f473ca8", + "Date" : "Thu, 20 Apr 2023 03:36:54 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14879,Microsoft.Compute/GetOperation30Min;29448", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20230113T023244Z:2d925a07-03f1-45c1-96ca-ce382249469a", + "Retry-After" : "0", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29945", + "x-ms-routing-request-id" : "JAPANEAST:20230420T033655Z:cb1a35ec-d883-48fa-871b-65c20f473ca8", "Expires" : "-1", "Content-Length" : "134", - "x-ms-request-id" : "65995cb3-fec7-450e-a70a-41b93dc0a482", - "Body" : "{\r\n \"startTime\": \"2023-01-13T02:23:23.9420017+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4f1ff338-8e4d-480c-9a25-90ff28496785\"\r\n}", - "x-ms-client-request-id" : "43853a2d-1dc3-4ac2-b985-585e24bf70ac", + "x-ms-request-id" : "2f71e8f1-4d7a-4f98-820a-0fe0f862fa45", + "Body" : "{\r\n \"startTime\": \"2023-04-20T03:27:33.4100332+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c2d9687b-a3a9-4d36-8bec-41c7e1196e20\"\r\n}", + "x-ms-client-request-id" : "38a46d1f-5b7e-44cd-a030-2c486c9250a5", "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/4f1ff338-8e4d-480c-9a25-90ff28496785?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&api-version=2023-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/c2d9687b-a3a9-4d36-8bec-41c7e1196e20?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&api-version=2023-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.23.0-beta.1 (17.0.3.1; Mac OS X; 11.7.2)", - "x-ms-client-request-id" : "46777432-9155-41b5-b3d9-bdc9ba4ef606" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.3)", + "x-ms-client-request-id" : "986d042d-9a45-4927-a5e6-584a6dcb794b" }, "Response" : { "Server" : "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" : "11955", + "x-ms-ratelimit-remaining-subscription-reads" : "11989", "StatusCode" : "200", - "x-ms-correlation-request-id" : "1066a6b2-2c89-48d1-af5e-da46e64b268f", - "Date" : "Fri, 13 Jan 2023 02:33:14 GMT", + "x-ms-correlation-request-id" : "bed9c2e4-14e7-46e0-8755-21e4636c1a98", + "Date" : "Thu, 20 Apr 2023 03:37:25 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14904,Microsoft.Compute/GetOperation30Min;29439", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20230113T023314Z:1066a6b2-2c89-48d1-af5e-da46e64b268f", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29944", + "x-ms-routing-request-id" : "JAPANEAST:20230420T033725Z:bed9c2e4-14e7-46e0-8755-21e4636c1a98", "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "6b2be079-e465-4179-97c6-1cbbd2c9f620", - "Body" : "{\r\n \"startTime\": \"2023-01-13T02:23:23.9420017+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4f1ff338-8e4d-480c-9a25-90ff28496785\"\r\n}", - "x-ms-client-request-id" : "46777432-9155-41b5-b3d9-bdc9ba4ef606", + "Content-Length" : "184", + "x-ms-request-id" : "11a8bbbd-d88c-4d0f-9ef5-cad43aaca0e2", + "Body" : "{\r\n \"startTime\": \"2023-04-20T03:27:33.4100332+00:00\",\r\n \"endTime\": \"2023-04-20T03:37:17.9966727+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"c2d9687b-a3a9-4d36-8bec-41c7e1196e20\"\r\n}", + "x-ms-client-request-id" : "986d042d-9a45-4927-a5e6-584a6dcb794b", "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/4f1ff338-8e4d-480c-9a25-90ff28496785?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&api-version=2023-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg69500/providers/Microsoft.Compute/virtualMachineScaleSets/vmss81183?api-version=2023-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.23.0-beta.1 (17.0.3.1; Mac OS X; 11.7.2)", - "x-ms-client-request-id" : "0fe591a4-48b9-4bc0-af6d-2412c80fe8b2" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.3)", + "x-ms-client-request-id" : "adae46c2-724e-4aad-9fcc-cd0b29e64875" }, "Response" : { "Server" : "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" : "11957", + "x-ms-ratelimit-remaining-subscription-reads" : "11989", "StatusCode" : "200", - "x-ms-correlation-request-id" : "64973022-db72-4586-b4af-bcbd565f398d", - "Date" : "Fri, 13 Jan 2023 02:33:44 GMT", + "x-ms-correlation-request-id" : "f89e456f-62e3-4452-835c-91faaa6044dd", + "Date" : "Thu, 20 Apr 2023 03:37:25 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14903,Microsoft.Compute/GetOperation30Min;29419", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20230113T023345Z:64973022-db72-4586-b4af-bcbd565f398d", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMScaleSet3Min;397,Microsoft.Compute/GetVMScaleSet30Min;2578", + "x-ms-routing-request-id" : "JAPANEAST:20230420T033725Z:f89e456f-62e3-4452-835c-91faaa6044dd", "Expires" : "-1", - "Content-Length" : "134", - "x-ms-request-id" : "6bb96caa-11b0-463c-b166-46f6144f4785", - "Body" : "{\r\n \"startTime\": \"2023-01-13T02:23:23.9420017+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4f1ff338-8e4d-480c-9a25-90ff28496785\"\r\n}", - "x-ms-client-request-id" : "0fe591a4-48b9-4bc0-af6d-2412c80fe8b2", + "Content-Length" : "3729", + "x-ms-request-id" : "b19562a7-266b-492b-b44b-2bb04be5b347", + "Body" : "{\r\n \"name\": \"vmss81183\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg69500/providers/Microsoft.Compute/virtualMachineScaleSets/vmss81183\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\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 \"orchestrationMode\": \"Uniform\",\r\n \"upgradePolicy\": {\r\n \"mode\": \"Manual\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss81183-vm\",\r\n \"adminUsername\": \"jvuser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/jvuser/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQCoYxUat8P0RpwJvxfrkMyXyGWpWiXQKc9KCL2eV4h0h/wpK6JTkTCXWvJg7VawBWdXTbjLJZVFrigASypuiE9uvLbX/xcqLwTqD+8cP2vlIg/gCWkVvGiz6NpvqeAFi443mx1gIWzuiQ4leXy4CGEzuphl5uXymZwiCqjF4zCJzQ==\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg69500/providers/Microsoft.Network/virtualNetworks/vmssvnet/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\"}}]}}]},\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Monitor\",\r\n \"type\": \"AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": \"1.0\",\r\n \"settings\": {\"GCS_AUTO_CONFIG\":true}\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Security.Monitoring\",\r\n \"type\": \"AzureSecurityLinuxAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": {\"enableGenevaUpload\":true,\"enableAutoConfig\":true,\"reportSuccessOnUnsupportedDistro\":true}\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\": \"7dea444a-9124-409e-bbe4-41279b474df3\",\r\n \"timeCreated\": \"2023-04-20T03:27:33.42564+00:00\"\r\n }\r\n}", + "x-ms-client-request-id" : "adae46c2-724e-4aad-9fcc-cd0b29e64875", "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/4f1ff338-8e4d-480c-9a25-90ff28496785?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&api-version=2023-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg69500/providers/Microsoft.Compute/virtualMachineScaleSets/vmss81183?api-version=2023-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.23.0-beta.1 (17.0.3.1; Mac OS X; 11.7.2)", - "x-ms-client-request-id" : "37ce8b1d-5c84-46a2-909c-f837e61cd874" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.3)", + "x-ms-client-request-id" : "a64ea22b-2f76-4dbc-94c0-aac0d40b3baa", + "Content-Type" : "application/json" }, "Response" : { "Server" : "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" : "11925", + "x-ms-ratelimit-remaining-subscription-reads" : "11988", "StatusCode" : "200", - "x-ms-correlation-request-id" : "06eadb37-74c3-4a74-b26b-5a3f62c68ea7", - "Date" : "Fri, 13 Jan 2023 02:34:14 GMT", + "Date" : "Thu, 20 Apr 2023 03:37:25 GMT", + "x-ms-correlation-request-id" : "dc9ecff6-d101-4bf5-a237-31d1560154c8", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14910,Microsoft.Compute/GetOperation30Min;29411", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20230113T023415Z:06eadb37-74c3-4a74-b26b-5a3f62c68ea7", + "x-ms-routing-request-id" : "JAPANEAST:20230420T033726Z:dc9ecff6-d101-4bf5-a237-31d1560154c8", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMScaleSet3Min;396,Microsoft.Compute/GetVMScaleSet30Min;2577", "Expires" : "-1", - "Content-Length" : "184", - "x-ms-request-id" : "2e234dcd-b0c6-4c12-a070-99a865019279", - "Body" : "{\r\n \"startTime\": \"2023-01-13T02:23:23.9420017+00:00\",\r\n \"endTime\": \"2023-01-13T02:33:54.6397024+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"4f1ff338-8e4d-480c-9a25-90ff28496785\"\r\n}", - "x-ms-client-request-id" : "37ce8b1d-5c84-46a2-909c-f837e61cd874", + "Content-Length" : "3729", + "x-ms-request-id" : "e7745b66-7bc4-458d-ab95-10d589588459", + "Body" : "{\r\n \"name\": \"vmss81183\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg69500/providers/Microsoft.Compute/virtualMachineScaleSets/vmss81183\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\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 \"orchestrationMode\": \"Uniform\",\r\n \"upgradePolicy\": {\r\n \"mode\": \"Manual\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss81183-vm\",\r\n \"adminUsername\": \"jvuser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/jvuser/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQCoYxUat8P0RpwJvxfrkMyXyGWpWiXQKc9KCL2eV4h0h/wpK6JTkTCXWvJg7VawBWdXTbjLJZVFrigASypuiE9uvLbX/xcqLwTqD+8cP2vlIg/gCWkVvGiz6NpvqeAFi443mx1gIWzuiQ4leXy4CGEzuphl5uXymZwiCqjF4zCJzQ==\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg69500/providers/Microsoft.Network/virtualNetworks/vmssvnet/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\"}}]}}]},\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Monitor\",\r\n \"type\": \"AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": \"1.0\",\r\n \"settings\": {\"GCS_AUTO_CONFIG\":true}\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Security.Monitoring\",\r\n \"type\": \"AzureSecurityLinuxAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": {\"enableGenevaUpload\":true,\"enableAutoConfig\":true,\"reportSuccessOnUnsupportedDistro\":true}\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\": \"7dea444a-9124-409e-bbe4-41279b474df3\",\r\n \"timeCreated\": \"2023-04-20T03:27:33.42564+00:00\"\r\n }\r\n}", + "x-ms-client-request-id" : "a64ea22b-2f76-4dbc-94c0-aac0d40b3baa", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43408/providers/Microsoft.Compute/virtualMachineScaleSets/vmss48542?api-version=2023-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg69500/providers/Microsoft.Compute/virtualMachineScaleSets/vmss81183/virtualMachines?$expand=instanceView&api-version=2023-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.23.0-beta.1 (17.0.3.1; Mac OS X; 11.7.2)", - "x-ms-client-request-id" : "af53b00d-e979-4d82-90c1-d029431eaec5" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.3)", + "x-ms-client-request-id" : "63bc4d07-e08b-4410-b8f6-8422021455a8", + "Content-Type" : "application/json" }, "Response" : { "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", + "x-ms-request-charge" : "7", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11919", + "x-ms-ratelimit-remaining-subscription-reads" : "11988", "StatusCode" : "200", - "x-ms-correlation-request-id" : "0acf7774-3fee-4cde-8b5d-77f719bb3f69", - "Date" : "Fri, 13 Jan 2023 02:34:15 GMT", + "Date" : "Thu, 20 Apr 2023 03:37:26 GMT", + "x-ms-correlation-request-id" : "4c42c850-3d52-476f-8131-b78e57d84d06", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMScaleSet3Min;378,Microsoft.Compute/GetVMScaleSet30Min;2423", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20230113T023416Z:0acf7774-3fee-4cde-8b5d-77f719bb3f69", + "x-ms-routing-request-id" : "JAPANEAST:20230420T033726Z:4c42c850-3d52-476f-8131-b78e57d84d06", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostGetVMScaleSet3Min;179,Microsoft.Compute/HighCostGetVMScaleSet30Min;890,Microsoft.Compute/VMScaleSetVMViews3Min;4993", "Expires" : "-1", - "Content-Length" : "3729", - "x-ms-request-id" : "1aa9006f-6380-48d4-ae8b-1014ad1e0757", - "Body" : "{\r\n \"name\": \"vmss48542\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43408/providers/Microsoft.Compute/virtualMachineScaleSets/vmss48542\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\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 \"orchestrationMode\": \"Uniform\",\r\n \"upgradePolicy\": {\r\n \"mode\": \"Manual\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss48542-vm\",\r\n \"adminUsername\": \"jvuser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/jvuser/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQCWDIO2KhzxW6WmZc1nKrf9SEbcLlce//+rq9EdrGgHtEc8a+sL6Nj1s01FhzBQi6OLRGuLeECfYp2yiIAbZDCENk8N1Sapu6WAaKlt5T3dRcqsQjE1CBCLWt7Zb8h+w0ekqiEnn+WCNNxFvegYrVuj3C+VUwyO6D5x46ODOOq5QQ==\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43408/providers/Microsoft.Network/virtualNetworks/vmssvnet/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\"}}]}}]},\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Monitor\",\r\n \"type\": \"AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": \"1.0\",\r\n \"settings\": {\"GCS_AUTO_CONFIG\":true}\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Security.Monitoring\",\r\n \"type\": \"AzureSecurityLinuxAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": {\"enableGenevaUpload\":true,\"enableAutoConfig\":true,\"reportSuccessOnUnsupportedDistro\":true}\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\": \"d9205783-de26-498b-87ba-79ef84d1674f\",\r\n \"timeCreated\": \"2023-01-13T02:23:23.95762+00:00\"\r\n }\r\n}", - "x-ms-client-request-id" : "af53b00d-e979-4d82-90c1-d029431eaec5", + "Content-Length" : "25964", + "x-ms-request-id" : "3a993225-552f-45bb-8458-e8656c737176", + "Body" : "{\r\n \"value\": [\r\n {\r\n \"name\": \"vmss81183_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg69500/providers/Microsoft.Compute/virtualMachineScaleSets/vmss81183/virtualMachines/1\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"instanceId\": \"1\",\r\n \"sku\": {\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \"modelDefinitionApplied\": \"VirtualMachineScaleSet\",\r\n \"instanceView\": {\r\n \"placementGroupId\": \"30381042-3d0c-47b5-90bf-57fe67c225da\",\r\n \"platformUpdateDomain\": 1,\r\n \"platformFaultDomain\": 1,\r\n \"computerName\": \"vmss81183-vm000001\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.9.0.4\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Guest Agent is running\",\r\n \"time\": \"2023-04-20T03:37:17+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": \"1.25.2\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Plugin enabled\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n \"typeHandlerVersion\": \"2.22.158\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Plugin enabled\"\r\n }\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vmss81183_vmss81183_1_OsDisk_1_b0d69037b3bf45808a559eed7b3d4fd9\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2023-04-20T03:37:18.9497319+00:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"extensions\": [\r\n {\r\n \"name\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"type\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": \"1.25.2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"Enable succeeded\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n \"type\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n \"typeHandlerVersion\": \"2.22.158\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"Enable ASM succeeded\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/updating\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Updating\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n },\r\n \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg69500/providers/Microsoft.Network/virtualNetworks/vmssvnet/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\"}}]}}]},\r\n \"vmId\": \"25f6fe84-768e-46da-b74f-221018225717\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202304180\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss81183_vmss81183_1_OsDisk_1_b0d69037b3bf45808a559eed7b3d4fd9\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg69500/providers/Microsoft.Compute/disks/vmss81183_vmss81183_1_OsDisk_1_b0d69037b3bf45808a559eed7b3d4fd9\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss81183-vm000001\",\r\n \"adminUsername\": \"jvuser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/jvuser/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQCoYxUat8P0RpwJvxfrkMyXyGWpWiXQKc9KCL2eV4h0h/wpK6JTkTCXWvJg7VawBWdXTbjLJZVFrigASypuiE9uvLbX/xcqLwTqD+8cP2vlIg/gCWkVvGiz6NpvqeAFi443mx1gIWzuiQ4leXy4CGEzuphl5uXymZwiCqjF4zCJzQ==\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg69500/providers/Microsoft.Compute/virtualMachineScaleSets/vmss81183/virtualMachines/1/networkInterfaces/primary-nic-cfg\"}]},\r\n \"provisioningState\": \"Updating\",\r\n \"timeCreated\": \"2023-04-20T03:27:33.6130883+00:00\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg69500/providers/Microsoft.Compute/virtualMachines/vmss81183_1/extensions/Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Updating\",\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Monitor\",\r\n \"type\": \"AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": \"1.0\",\r\n \"settings\": {\"GCS_AUTO_CONFIG\":true}\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg69500/providers/Microsoft.Compute/virtualMachines/vmss81183_1/extensions/Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Updating\",\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Security.Monitoring\",\r\n \"type\": \"AzureSecurityLinuxAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": {\"enableGenevaUpload\":true,\"enableAutoConfig\":true,\"reportSuccessOnUnsupportedDistro\":true}\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"vmss81183_2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg69500/providers/Microsoft.Compute/virtualMachineScaleSets/vmss81183/virtualMachines/2\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"instanceId\": \"2\",\r\n \"sku\": {\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \"modelDefinitionApplied\": \"VirtualMachineScaleSet\",\r\n \"instanceView\": {\r\n \"placementGroupId\": \"30381042-3d0c-47b5-90bf-57fe67c225da\",\r\n \"platformUpdateDomain\": 2,\r\n \"platformFaultDomain\": 2,\r\n \"computerName\": \"vmss81183-vm000002\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.9.0.4\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Guest Agent is running\",\r\n \"time\": \"2023-04-20T03:37:07+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": \"1.25.2\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Plugin enabled\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n \"typeHandlerVersion\": \"2.22.158\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"[ExtensionError] Failed to get heart beat file\"\r\n }\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vmss81183_vmss81183_2_OsDisk_1_49ca6007cd5d49819217d0eea511154d\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2023-04-20T03:37:18.9497319+00:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"extensions\": [\r\n {\r\n \"name\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"type\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": \"1.25.2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"Enable succeeded\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n \"type\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n \"typeHandlerVersion\": \"2.22.158\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"Enable ASM succeeded\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/updating\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Updating\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n },\r\n \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg69500/providers/Microsoft.Network/virtualNetworks/vmssvnet/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\"}}]}}]},\r\n \"vmId\": \"3bb00f03-99f4-464f-92cc-da40f1de6b9d\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202304180\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss81183_vmss81183_2_OsDisk_1_49ca6007cd5d49819217d0eea511154d\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg69500/providers/Microsoft.Compute/disks/vmss81183_vmss81183_2_OsDisk_1_49ca6007cd5d49819217d0eea511154d\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss81183-vm000002\",\r\n \"adminUsername\": \"jvuser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/jvuser/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQCoYxUat8P0RpwJvxfrkMyXyGWpWiXQKc9KCL2eV4h0h/wpK6JTkTCXWvJg7VawBWdXTbjLJZVFrigASypuiE9uvLbX/xcqLwTqD+8cP2vlIg/gCWkVvGiz6NpvqeAFi443mx1gIWzuiQ4leXy4CGEzuphl5uXymZwiCqjF4zCJzQ==\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg69500/providers/Microsoft.Compute/virtualMachineScaleSets/vmss81183/virtualMachines/2/networkInterfaces/primary-nic-cfg\"}]},\r\n \"provisioningState\": \"Updating\",\r\n \"timeCreated\": \"2023-04-20T03:27:33.6130883+00:00\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg69500/providers/Microsoft.Compute/virtualMachines/vmss81183_2/extensions/Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Updating\",\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Monitor\",\r\n \"type\": \"AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": \"1.0\",\r\n \"settings\": {\"GCS_AUTO_CONFIG\":true}\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg69500/providers/Microsoft.Compute/virtualMachines/vmss81183_2/extensions/Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Updating\",\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Security.Monitoring\",\r\n \"type\": \"AzureSecurityLinuxAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": {\"enableGenevaUpload\":true,\"enableAutoConfig\":true,\"reportSuccessOnUnsupportedDistro\":true}\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"vmss81183_3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg69500/providers/Microsoft.Compute/virtualMachineScaleSets/vmss81183/virtualMachines/3\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"instanceId\": \"3\",\r\n \"sku\": {\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \"modelDefinitionApplied\": \"VirtualMachineScaleSet\",\r\n \"instanceView\": {\r\n \"placementGroupId\": \"30381042-3d0c-47b5-90bf-57fe67c225da\",\r\n \"platformUpdateDomain\": 3,\r\n \"platformFaultDomain\": 3,\r\n \"computerName\": \"vmss81183-vm000003\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.9.0.4\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Guest Agent is running\",\r\n \"time\": \"2023-04-20T03:37:09+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": \"1.25.2\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Plugin enabled\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n \"typeHandlerVersion\": \"2.22.158\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"[ExtensionError] Failed to get heart beat file\"\r\n }\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vmss81183_vmss81183_3_OsDisk_1_8b4aee3d4d7b4762b37b0bd66ba642c8\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2023-04-20T03:37:18.9497319+00:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"extensions\": [\r\n {\r\n \"name\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"type\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": \"1.25.2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"Enable succeeded\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n \"type\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n \"typeHandlerVersion\": \"2.22.158\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"Enable ASM succeeded\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/updating\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Updating\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n },\r\n \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg69500/providers/Microsoft.Network/virtualNetworks/vmssvnet/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\"}}]}}]},\r\n \"vmId\": \"2a2d9d30-6c89-48a6-8d4f-0c477adc59fe\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202304180\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss81183_vmss81183_3_OsDisk_1_8b4aee3d4d7b4762b37b0bd66ba642c8\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg69500/providers/Microsoft.Compute/disks/vmss81183_vmss81183_3_OsDisk_1_8b4aee3d4d7b4762b37b0bd66ba642c8\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss81183-vm000003\",\r\n \"adminUsername\": \"jvuser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/jvuser/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQCoYxUat8P0RpwJvxfrkMyXyGWpWiXQKc9KCL2eV4h0h/wpK6JTkTCXWvJg7VawBWdXTbjLJZVFrigASypuiE9uvLbX/xcqLwTqD+8cP2vlIg/gCWkVvGiz6NpvqeAFi443mx1gIWzuiQ4leXy4CGEzuphl5uXymZwiCqjF4zCJzQ==\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg69500/providers/Microsoft.Compute/virtualMachineScaleSets/vmss81183/virtualMachines/3/networkInterfaces/primary-nic-cfg\"}]},\r\n \"provisioningState\": \"Updating\",\r\n \"timeCreated\": \"2023-04-20T03:27:33.6130883+00:00\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg69500/providers/Microsoft.Compute/virtualMachines/vmss81183_3/extensions/Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Updating\",\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Monitor\",\r\n \"type\": \"AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": \"1.0\",\r\n \"settings\": {\"GCS_AUTO_CONFIG\":true}\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg69500/providers/Microsoft.Compute/virtualMachines/vmss81183_3/extensions/Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Updating\",\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Security.Monitoring\",\r\n \"type\": \"AzureSecurityLinuxAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": {\"enableGenevaUpload\":true,\"enableAutoConfig\":true,\"reportSuccessOnUnsupportedDistro\":true}\r\n }\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "x-ms-client-request-id" : "63bc4d07-e08b-4410-b8f6-8422021455a8", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43408/providers/Microsoft.Compute/virtualMachineScaleSets/vmss48542?api-version=2023-03-01", + "Method" : "POST", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg69500/providers/Microsoft.Compute/virtualMachineScaleSets/vmss81183/virtualMachines/1/deallocate?api-version=2023-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.23.0-beta.1 (17.0.3.1; Mac OS X; 11.7.2)", - "x-ms-client-request-id" : "249be069-6811-4bea-984b-8e40b92aea75", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.3)", + "x-ms-client-request-id" : "c2c2f255-2597-423d-aab6-2bd02134359b", "Content-Type" : "application/json" }, "Response" : { "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", + "x-ms-request-charge" : "1", "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11935", - "StatusCode" : "200", - "Date" : "Fri, 13 Jan 2023 02:34:16 GMT", - "x-ms-correlation-request-id" : "d4d8a93a-b935-4dc0-9541-c5a6da85ef2e", + "Azure-AsyncNotification" : "Enabled", + "StatusCode" : "202", + "Date" : "Thu, 20 Apr 2023 03:37:27 GMT", + "x-ms-correlation-request-id" : "c6f81274-8910-495b-881f-df4149ea6869", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20230113T023416Z:d4d8a93a-b935-4dc0-9541-c5a6da85ef2e", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMScaleSet3Min;377,Microsoft.Compute/GetVMScaleSet30Min;2422", + "x-ms-routing-request-id" : "JAPANEAST:20230420T033727Z:c6f81274-8910-495b-881f-df4149ea6869", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteVMScaleSetVM3Min;239,Microsoft.Compute/DeleteVMScaleSetVM30Min;1198,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1199,Microsoft.Compute/VmssQueuedVMOperations;0", "Expires" : "-1", - "Content-Length" : "3729", - "x-ms-request-id" : "bede77a7-e010-40b7-9ec8-6886b2a6a31b", - "Body" : "{\r\n \"name\": \"vmss48542\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43408/providers/Microsoft.Compute/virtualMachineScaleSets/vmss48542\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\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 \"orchestrationMode\": \"Uniform\",\r\n \"upgradePolicy\": {\r\n \"mode\": \"Manual\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss48542-vm\",\r\n \"adminUsername\": \"jvuser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/jvuser/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQCWDIO2KhzxW6WmZc1nKrf9SEbcLlce//+rq9EdrGgHtEc8a+sL6Nj1s01FhzBQi6OLRGuLeECfYp2yiIAbZDCENk8N1Sapu6WAaKlt5T3dRcqsQjE1CBCLWt7Zb8h+w0ekqiEnn+WCNNxFvegYrVuj3C+VUwyO6D5x46ODOOq5QQ==\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43408/providers/Microsoft.Network/virtualNetworks/vmssvnet/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\"}}]}}]},\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Monitor\",\r\n \"type\": \"AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": \"1.0\",\r\n \"settings\": {\"GCS_AUTO_CONFIG\":true}\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Security.Monitoring\",\r\n \"type\": \"AzureSecurityLinuxAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": {\"enableGenevaUpload\":true,\"enableAutoConfig\":true,\"reportSuccessOnUnsupportedDistro\":true}\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\": \"d9205783-de26-498b-87ba-79ef84d1674f\",\r\n \"timeCreated\": \"2023-01-13T02:23:23.95762+00:00\"\r\n }\r\n}", - "x-ms-client-request-id" : "249be069-6811-4bea-984b-8e40b92aea75", - "Content-Type" : "application/json; charset=utf-8" + "Content-Length" : "0", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/696d459e-59d2-4691-9a46-ae2cb6922e73?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&api-version=2023-03-01", + "x-ms-request-id" : "696d459e-59d2-4691-9a46-ae2cb6922e73", + "x-ms-client-request-id" : "c2c2f255-2597-423d-aab6-2bd02134359b", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/696d459e-59d2-4691-9a46-ae2cb6922e73?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&monitor=true&api-version=2023-03-01" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43408/providers/Microsoft.Compute/virtualMachineScaleSets/vmss48542/virtualMachines?$expand=instanceView&api-version=2023-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/696d459e-59d2-4691-9a46-ae2cb6922e73?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&api-version=2023-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.23.0-beta.1 (17.0.3.1; Mac OS X; 11.7.2)", - "x-ms-client-request-id" : "7a5dad97-a893-44f2-8934-9d70a0789d68", - "Content-Type" : "application/json" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.3)", + "x-ms-client-request-id" : "2c8e9b7e-ed12-43b5-9638-10115dedcec6" }, "Response" : { "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-request-charge" : "7", "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11947", + "x-ms-ratelimit-remaining-subscription-reads" : "11987", "StatusCode" : "200", - "Date" : "Fri, 13 Jan 2023 02:34:17 GMT", - "x-ms-correlation-request-id" : "024f1e34-5f36-45d6-b3f3-3f6fa143b254", + "x-ms-correlation-request-id" : "ced727a6-c297-4f07-a40d-84e4fbbcdea7", + "Date" : "Thu, 20 Apr 2023 03:37:37 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20230113T023418Z:024f1e34-5f36-45d6-b3f3-3f6fa143b254", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/HighCostGetVMScaleSet3Min;176,Microsoft.Compute/HighCostGetVMScaleSet30Min;875,Microsoft.Compute/VMScaleSetVMViews3Min;4985", + "Retry-After" : "0", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29943", + "x-ms-routing-request-id" : "JAPANEAST:20230420T033737Z:ced727a6-c297-4f07-a40d-84e4fbbcdea7", "Expires" : "-1", - "Content-Length" : "26010", - "x-ms-request-id" : "6326e1df-d457-4cfc-9200-40595cb75588", - "Body" : "{\r\n \"value\": [\r\n {\r\n \"name\": \"vmss48542_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43408/providers/Microsoft.Compute/virtualMachineScaleSets/vmss48542/virtualMachines/1\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"instanceId\": \"1\",\r\n \"sku\": {\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \"modelDefinitionApplied\": \"VirtualMachineScaleSet\",\r\n \"instanceView\": {\r\n \"placementGroupId\": \"96f87aab-f5d5-4865-8306-d6391e40090f\",\r\n \"platformUpdateDomain\": 1,\r\n \"platformFaultDomain\": 1,\r\n \"computerName\": \"vmss48542-vm000001\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.9.0.4\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Guest Agent is running\",\r\n \"time\": \"2023-01-13T02:34:15+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": \"1.24.2\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Plugin enabled\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n \"typeHandlerVersion\": \"2.21.115\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Plugin enabled\"\r\n }\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vmss48542_vmss48542_1_OsDisk_1_7fa69753d73347b19fdf46f4927d2a37\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2023-01-13T02:33:55.2803157+00:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"extensions\": [\r\n {\r\n \"name\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"type\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": \"1.24.2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"Enable succeeded\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n \"type\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n \"typeHandlerVersion\": \"2.21.115\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"Enable ASM succeeded\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/updating\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Updating\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n },\r\n \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43408/providers/Microsoft.Network/virtualNetworks/vmssvnet/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\"}}]}}]},\r\n \"vmId\": \"82b33246-8a3e-4a97-995f-51e6f611de06\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202301100\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss48542_vmss48542_1_OsDisk_1_7fa69753d73347b19fdf46f4927d2a37\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43408/providers/Microsoft.Compute/disks/vmss48542_vmss48542_1_OsDisk_1_7fa69753d73347b19fdf46f4927d2a37\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss48542-vm000001\",\r\n \"adminUsername\": \"jvuser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/jvuser/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQCWDIO2KhzxW6WmZc1nKrf9SEbcLlce//+rq9EdrGgHtEc8a+sL6Nj1s01FhzBQi6OLRGuLeECfYp2yiIAbZDCENk8N1Sapu6WAaKlt5T3dRcqsQjE1CBCLWt7Zb8h+w0ekqiEnn+WCNNxFvegYrVuj3C+VUwyO6D5x46ODOOq5QQ==\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43408/providers/Microsoft.Compute/virtualMachineScaleSets/vmss48542/virtualMachines/1/networkInterfaces/primary-nic-cfg\"}]},\r\n \"provisioningState\": \"Updating\",\r\n \"timeCreated\": \"2023-01-13T02:23:24.0826726+00:00\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43408/providers/Microsoft.Compute/virtualMachines/vmss48542_1/extensions/Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Updating\",\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Monitor\",\r\n \"type\": \"AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": \"1.0\",\r\n \"settings\": {\"GCS_AUTO_CONFIG\":true}\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43408/providers/Microsoft.Compute/virtualMachines/vmss48542_1/extensions/Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Updating\",\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Security.Monitoring\",\r\n \"type\": \"AzureSecurityLinuxAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": {\"enableGenevaUpload\":true,\"enableAutoConfig\":true,\"reportSuccessOnUnsupportedDistro\":true}\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"vmss48542_3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43408/providers/Microsoft.Compute/virtualMachineScaleSets/vmss48542/virtualMachines/3\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"instanceId\": \"3\",\r\n \"sku\": {\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \"modelDefinitionApplied\": \"VirtualMachineScaleSet\",\r\n \"instanceView\": {\r\n \"placementGroupId\": \"96f87aab-f5d5-4865-8306-d6391e40090f\",\r\n \"platformUpdateDomain\": 3,\r\n \"platformFaultDomain\": 3,\r\n \"computerName\": \"vmss48542-vm000003\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.9.0.4\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Guest Agent is running\",\r\n \"time\": \"2023-01-13T02:34:14+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": \"1.24.2\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Plugin enabled\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n \"typeHandlerVersion\": \"2.21.115\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Plugin enabled\"\r\n }\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vmss48542_vmss48542_3_OsDisk_1_3a5351cebc354c86b43f12e996e7833b\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2023-01-13T02:33:55.2803157+00:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"extensions\": [\r\n {\r\n \"name\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"type\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": \"1.24.2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"Enable succeeded\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n \"type\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n \"typeHandlerVersion\": \"2.21.115\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"Enable ASM succeeded\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/updating\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Updating\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n },\r\n \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43408/providers/Microsoft.Network/virtualNetworks/vmssvnet/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\"}}]}}]},\r\n \"vmId\": \"c5f515dc-cf46-4dea-8c75-55964c195717\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202301100\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss48542_vmss48542_3_OsDisk_1_3a5351cebc354c86b43f12e996e7833b\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43408/providers/Microsoft.Compute/disks/vmss48542_vmss48542_3_OsDisk_1_3a5351cebc354c86b43f12e996e7833b\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss48542-vm000003\",\r\n \"adminUsername\": \"jvuser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/jvuser/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQCWDIO2KhzxW6WmZc1nKrf9SEbcLlce//+rq9EdrGgHtEc8a+sL6Nj1s01FhzBQi6OLRGuLeECfYp2yiIAbZDCENk8N1Sapu6WAaKlt5T3dRcqsQjE1CBCLWt7Zb8h+w0ekqiEnn+WCNNxFvegYrVuj3C+VUwyO6D5x46ODOOq5QQ==\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43408/providers/Microsoft.Compute/virtualMachineScaleSets/vmss48542/virtualMachines/3/networkInterfaces/primary-nic-cfg\"}]},\r\n \"provisioningState\": \"Updating\",\r\n \"timeCreated\": \"2023-01-13T02:23:24.0826726+00:00\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43408/providers/Microsoft.Compute/virtualMachines/vmss48542_3/extensions/Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Updating\",\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Monitor\",\r\n \"type\": \"AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": \"1.0\",\r\n \"settings\": {\"GCS_AUTO_CONFIG\":true}\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43408/providers/Microsoft.Compute/virtualMachines/vmss48542_3/extensions/Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Updating\",\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Security.Monitoring\",\r\n \"type\": \"AzureSecurityLinuxAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": {\"enableGenevaUpload\":true,\"enableAutoConfig\":true,\"reportSuccessOnUnsupportedDistro\":true}\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"vmss48542_4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43408/providers/Microsoft.Compute/virtualMachineScaleSets/vmss48542/virtualMachines/4\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"instanceId\": \"4\",\r\n \"sku\": {\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \"modelDefinitionApplied\": \"VirtualMachineScaleSet\",\r\n \"instanceView\": {\r\n \"placementGroupId\": \"96f87aab-f5d5-4865-8306-d6391e40090f\",\r\n \"platformUpdateDomain\": 4,\r\n \"platformFaultDomain\": 4,\r\n \"computerName\": \"vmss48542-vm000004\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.9.0.4\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Guest Agent is running\",\r\n \"time\": \"2023-01-13T02:34:07+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": \"1.24.2\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Plugin enabled\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n \"typeHandlerVersion\": \"2.21.115\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"[ExtensionError] Failed to get heart beat file\"\r\n }\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vmss48542_vmss48542_4_OsDisk_1_36fd6f8bcd244e0095b893005e71614d\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2023-01-13T02:23:50.2078666+00:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"extensions\": [\r\n {\r\n \"name\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"type\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": \"1.24.2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"Enable succeeded\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n \"type\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n \"typeHandlerVersion\": \"2.21.115\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"Enable ASM succeeded\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2023-01-13T02:33:54.5772326+00:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n },\r\n \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43408/providers/Microsoft.Network/virtualNetworks/vmssvnet/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\"}}]}}]},\r\n \"vmId\": \"246ab5ec-ec44-4b8d-a8e9-e30e99577d9d\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202301100\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss48542_vmss48542_4_OsDisk_1_36fd6f8bcd244e0095b893005e71614d\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43408/providers/Microsoft.Compute/disks/vmss48542_vmss48542_4_OsDisk_1_36fd6f8bcd244e0095b893005e71614d\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss48542-vm000004\",\r\n \"adminUsername\": \"jvuser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/jvuser/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQCWDIO2KhzxW6WmZc1nKrf9SEbcLlce//+rq9EdrGgHtEc8a+sL6Nj1s01FhzBQi6OLRGuLeECfYp2yiIAbZDCENk8N1Sapu6WAaKlt5T3dRcqsQjE1CBCLWt7Zb8h+w0ekqiEnn+WCNNxFvegYrVuj3C+VUwyO6D5x46ODOOq5QQ==\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43408/providers/Microsoft.Compute/virtualMachineScaleSets/vmss48542/virtualMachines/4/networkInterfaces/primary-nic-cfg\"}]},\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2023-01-13T02:23:24.0826726+00:00\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43408/providers/Microsoft.Compute/virtualMachines/vmss48542_4/extensions/Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Monitor\",\r\n \"type\": \"AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": \"1.0\",\r\n \"settings\": {\"GCS_AUTO_CONFIG\":true}\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43408/providers/Microsoft.Compute/virtualMachines/vmss48542_4/extensions/Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Security.Monitoring\",\r\n \"type\": \"AzureSecurityLinuxAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": {\"enableGenevaUpload\":true,\"enableAutoConfig\":true,\"reportSuccessOnUnsupportedDistro\":true}\r\n }\r\n }\r\n ]\r\n }\r\n ]\r\n}", - "x-ms-client-request-id" : "7a5dad97-a893-44f2-8934-9d70a0789d68", + "Content-Length" : "134", + "x-ms-request-id" : "52b19208-e587-47f1-9b1f-29f2d74d4947", + "Body" : "{\r\n \"startTime\": \"2023-04-20T03:37:27.6061842+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"696d459e-59d2-4691-9a46-ae2cb6922e73\"\r\n}", + "x-ms-client-request-id" : "2c8e9b7e-ed12-43b5-9638-10115dedcec6", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null - }, { - "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43408/providers/Microsoft.Compute/virtualMachineScaleSets/vmss48542/virtualMachines/1/deallocate?api-version=2023-03-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.23.0-beta.1 (17.0.3.1; Mac OS X; 11.7.2)", - "x-ms-client-request-id" : "f671e2f8-04db-4802-9a12-6a242080102e", - "Content-Type" : "application/json" - }, - "Response" : { - "Server" : "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0", - "x-ms-request-charge" : "1", - "X-Content-Type-Options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "Pragma" : "no-cache", - "retry-after" : "0", - "Azure-AsyncNotification" : "Enabled", - "StatusCode" : "202", - "Date" : "Fri, 13 Jan 2023 02:34:18 GMT", - "x-ms-correlation-request-id" : "4ca650ef-906a-413c-8e57-9bd1d6376d45", - "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", - "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20230113T023419Z:4ca650ef-906a-413c-8e57-9bd1d6376d45", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/DeleteVMScaleSetVM3Min;239,Microsoft.Compute/DeleteVMScaleSetVM30Min;1198,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1192,Microsoft.Compute/VmssQueuedVMOperations;0", - "Expires" : "-1", - "Content-Length" : "0", - "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/83cfa56c-a6ad-4b85-8bd7-1ee07dc18ede?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&api-version=2023-03-01", - "x-ms-request-id" : "83cfa56c-a6ad-4b85-8bd7-1ee07dc18ede", - "x-ms-client-request-id" : "f671e2f8-04db-4802-9a12-6a242080102e", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/83cfa56c-a6ad-4b85-8bd7-1ee07dc18ede?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&monitor=true&api-version=2023-03-01" - }, - "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/83cfa56c-a6ad-4b85-8bd7-1ee07dc18ede?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&api-version=2023-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/696d459e-59d2-4691-9a46-ae2cb6922e73?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&api-version=2023-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.23.0-beta.1 (17.0.3.1; Mac OS X; 11.7.2)", - "x-ms-client-request-id" : "186c0b19-9e2d-41a0-a6f8-26310bdc0ea1" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.3)", + "x-ms-client-request-id" : "76f757d0-0be4-48b5-af0e-e09817495097" }, "Response" : { "Server" : "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" : "11960", + "x-ms-ratelimit-remaining-subscription-reads" : "11987", "StatusCode" : "200", - "x-ms-correlation-request-id" : "a2a3f24e-0c0e-4c88-8e3e-a55a1b2bac40", - "Date" : "Fri, 13 Jan 2023 02:34:48 GMT", + "x-ms-correlation-request-id" : "a858536b-8298-4162-8820-080d74e27d71", + "Date" : "Thu, 20 Apr 2023 03:38:07 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14923,Microsoft.Compute/GetOperation30Min;29396", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20230113T023449Z:a2a3f24e-0c0e-4c88-8e3e-a55a1b2bac40", + "Retry-After" : "0", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29941", + "x-ms-routing-request-id" : "JAPANEAST:20230420T033808Z:a858536b-8298-4162-8820-080d74e27d71", "Expires" : "-1", "Content-Length" : "134", - "x-ms-request-id" : "b1045554-fe73-4491-a8c1-8de20420aa41", - "Body" : "{\r\n \"startTime\": \"2023-01-13T02:34:18.8588151+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"83cfa56c-a6ad-4b85-8bd7-1ee07dc18ede\"\r\n}", - "x-ms-client-request-id" : "186c0b19-9e2d-41a0-a6f8-26310bdc0ea1", + "x-ms-request-id" : "8b7233c6-abfe-43fc-84df-9af709c25a56", + "Body" : "{\r\n \"startTime\": \"2023-04-20T03:37:27.6061842+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"696d459e-59d2-4691-9a46-ae2cb6922e73\"\r\n}", + "x-ms-client-request-id" : "76f757d0-0be4-48b5-af0e-e09817495097", "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/83cfa56c-a6ad-4b85-8bd7-1ee07dc18ede?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&api-version=2023-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/696d459e-59d2-4691-9a46-ae2cb6922e73?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&api-version=2023-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.23.0-beta.1 (17.0.3.1; Mac OS X; 11.7.2)", - "x-ms-client-request-id" : "cf429499-9836-4d61-8117-f89fd692d5ca" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.3)", + "x-ms-client-request-id" : "1eab162b-0596-46ff-9e2a-6214e4bc9033" }, "Response" : { "Server" : "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" : "11935", + "x-ms-ratelimit-remaining-subscription-reads" : "11986", "StatusCode" : "200", - "x-ms-correlation-request-id" : "05894c08-0cc2-49e6-b428-394a5a052bd8", - "Date" : "Fri, 13 Jan 2023 02:35:19 GMT", + "x-ms-correlation-request-id" : "af2495ec-e467-496c-8ecd-3e8b74ab3169", + "Date" : "Thu, 20 Apr 2023 03:38:38 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14930,Microsoft.Compute/GetOperation30Min;29389", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20230113T023519Z:05894c08-0cc2-49e6-b428-394a5a052bd8", + "Retry-After" : "0", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29940", + "x-ms-routing-request-id" : "JAPANEAST:20230420T033838Z:af2495ec-e467-496c-8ecd-3e8b74ab3169", "Expires" : "-1", "Content-Length" : "134", - "x-ms-request-id" : "e8372b14-47a2-4e09-bd03-3750b7d3961b", - "Body" : "{\r\n \"startTime\": \"2023-01-13T02:34:18.8588151+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"83cfa56c-a6ad-4b85-8bd7-1ee07dc18ede\"\r\n}", - "x-ms-client-request-id" : "cf429499-9836-4d61-8117-f89fd692d5ca", + "x-ms-request-id" : "f2b0ee38-238b-4b8a-9bf3-4d94eb0391cc", + "Body" : "{\r\n \"startTime\": \"2023-04-20T03:37:27.6061842+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"696d459e-59d2-4691-9a46-ae2cb6922e73\"\r\n}", + "x-ms-client-request-id" : "1eab162b-0596-46ff-9e2a-6214e4bc9033", "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/83cfa56c-a6ad-4b85-8bd7-1ee07dc18ede?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&api-version=2023-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/696d459e-59d2-4691-9a46-ae2cb6922e73?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&api-version=2023-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.23.0-beta.1 (17.0.3.1; Mac OS X; 11.7.2)", - "x-ms-client-request-id" : "5c4bbce9-4f6b-4657-905c-263f48947cb9" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.3)", + "x-ms-client-request-id" : "45104dd0-0bb7-49d5-bde9-79aa60e8293b" }, "Response" : { "Server" : "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" : "11918", + "x-ms-ratelimit-remaining-subscription-reads" : "11986", "StatusCode" : "200", - "x-ms-correlation-request-id" : "33a6c856-f27f-4a63-8983-aecab62b7349", - "Date" : "Fri, 13 Jan 2023 02:35:49 GMT", + "x-ms-correlation-request-id" : "02a348a6-371f-440a-a033-340deba6189e", + "Date" : "Thu, 20 Apr 2023 03:39:08 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14929,Microsoft.Compute/GetOperation30Min;29375", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20230113T023550Z:33a6c856-f27f-4a63-8983-aecab62b7349", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14990,Microsoft.Compute/GetOperation30Min;29937", + "x-ms-routing-request-id" : "JAPANEAST:20230420T033908Z:02a348a6-371f-440a-a033-340deba6189e", "Expires" : "-1", "Content-Length" : "184", - "x-ms-request-id" : "062b99e1-07b8-4313-9389-b576b13e958e", - "Body" : "{\r\n \"startTime\": \"2023-01-13T02:34:18.8588151+00:00\",\r\n \"endTime\": \"2023-01-13T02:35:33.2192719+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"83cfa56c-a6ad-4b85-8bd7-1ee07dc18ede\"\r\n}", - "x-ms-client-request-id" : "5c4bbce9-4f6b-4657-905c-263f48947cb9", + "x-ms-request-id" : "93577923-6b59-479f-89dd-774e136228b7", + "Body" : "{\r\n \"startTime\": \"2023-04-20T03:37:27.6061842+00:00\",\r\n \"endTime\": \"2023-04-20T03:39:05.9356582+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"696d459e-59d2-4691-9a46-ae2cb6922e73\"\r\n}", + "x-ms-client-request-id" : "45104dd0-0bb7-49d5-bde9-79aa60e8293b", "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/83cfa56c-a6ad-4b85-8bd7-1ee07dc18ede?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&monitor=true&api-version=2023-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/696d459e-59d2-4691-9a46-ae2cb6922e73?p=ce71cbb8-84e0-440e-b69e-9e5ddfe1c24c&monitor=true&api-version=2023-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.23.0-beta.1 (17.0.3.1; Mac OS X; 11.7.2)", - "x-ms-client-request-id" : "c76540f0-9903-4e1c-bc9b-8a13b4c564d1" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.3)", + "x-ms-client-request-id" : "87c25239-5903-4c96-a9db-11d1f6f9dd20" }, "Response" : { "Server" : "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" : "11934", + "x-ms-ratelimit-remaining-subscription-reads" : "11985", "StatusCode" : "200", - "x-ms-correlation-request-id" : "a7c03f54-eb11-499f-a5d2-94dca4ff6789", - "Date" : "Fri, 13 Jan 2023 02:35:50 GMT", + "x-ms-correlation-request-id" : "f210670d-50ae-41b1-a491-cf7db5c18666", + "Date" : "Thu, 20 Apr 2023 03:39:08 GMT", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14928,Microsoft.Compute/GetOperation30Min;29374", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20230113T023551Z:a7c03f54-eb11-499f-a5d2-94dca4ff6789", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14989,Microsoft.Compute/GetOperation30Min;29936", + "x-ms-routing-request-id" : "JAPANEAST:20230420T033909Z:f210670d-50ae-41b1-a491-cf7db5c18666", "Expires" : "-1", "Content-Length" : "0", - "x-ms-request-id" : "6dcbbeaa-078f-43e4-ad74-e31b1e175d1c", - "x-ms-client-request-id" : "c76540f0-9903-4e1c-bc9b-8a13b4c564d1" + "x-ms-request-id" : "ee63f6b1-f1c9-4353-8369-31543605477a", + "x-ms-client-request-id" : "87c25239-5903-4c96-a9db-11d1f6f9dd20" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43408/providers/Microsoft.Compute/virtualMachineScaleSets/vmss48542/virtualMachines/1?$expand=instanceView&api-version=2023-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg69500/providers/Microsoft.Compute/virtualMachineScaleSets/vmss81183/virtualMachines/1?$expand=instanceView&api-version=2023-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.23.0-beta.1 (17.0.3.1; Mac OS X; 11.7.2)", - "x-ms-client-request-id" : "a928b922-03e2-4bc8-8b3f-4d4537fdfda1", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.3)", + "x-ms-client-request-id" : "d6add86b-02f1-4857-ad05-a647f2938892", "Content-Type" : "application/json" }, "Response" : { @@ -975,28 +947,28 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11946", + "x-ms-ratelimit-remaining-subscription-reads" : "11985", "StatusCode" : "200", - "Date" : "Fri, 13 Jan 2023 02:35:52 GMT", - "x-ms-correlation-request-id" : "9c8973c5-9fb7-45dc-b640-7d47c61283c6", + "Date" : "Thu, 20 Apr 2023 03:39:08 GMT", + "x-ms-correlation-request-id" : "ba892537-0797-4716-b6b0-bcafcce21a59", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20230113T023552Z:9c8973c5-9fb7-45dc-b640-7d47c61283c6", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMScaleSetVM3Min;998,Microsoft.Compute/GetVMScaleSetVM30Min;4990,Microsoft.Compute/VMScaleSetVMViews3Min;4984", + "x-ms-routing-request-id" : "JAPANEAST:20230420T033909Z:ba892537-0797-4716-b6b0-bcafcce21a59", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMScaleSetVM3Min;999,Microsoft.Compute/GetVMScaleSetVM30Min;4994,Microsoft.Compute/VMScaleSetVMViews3Min;4992", "Expires" : "-1", "Content-Length" : "5645", - "x-ms-request-id" : "a88c5e3f-e3e0-4935-ad7b-787bff158c6a", - "Body" : "{\r\n \"name\": \"vmss48542_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43408/providers/Microsoft.Compute/virtualMachineScaleSets/vmss48542/virtualMachines/1\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"instanceId\": \"1\",\r\n \"sku\": {\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": false,\r\n \"modelDefinitionApplied\": \"VirtualMachineScaleSet\",\r\n \"instanceView\": {\r\n \"placementGroupId\": \"96f87aab-f5d5-4865-8306-d6391e40090f\",\r\n \"platformUpdateDomain\": 1,\r\n \"platformFaultDomain\": 1,\r\n \"disks\": [\r\n {\r\n \"name\": \"vmss48542_vmss48542_1_OsDisk_1_7fa69753d73347b19fdf46f4927d2a37\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2023-01-13T02:35:31.9848913+00:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2023-01-13T02:35:32.0005108+00:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/deallocated\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM deallocated\"\r\n }\r\n ]\r\n },\r\n \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43408/providers/Microsoft.Network/virtualNetworks/vmssvnet/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\"}}]}}]},\r\n \"vmId\": \"82b33246-8a3e-4a97-995f-51e6f611de06\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202301100\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss48542_vmss48542_1_OsDisk_1_7fa69753d73347b19fdf46f4927d2a37\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43408/providers/Microsoft.Compute/disks/vmss48542_vmss48542_1_OsDisk_1_7fa69753d73347b19fdf46f4927d2a37\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss48542-vm000001\",\r\n \"adminUsername\": \"jvuser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/jvuser/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQCWDIO2KhzxW6WmZc1nKrf9SEbcLlce//+rq9EdrGgHtEc8a+sL6Nj1s01FhzBQi6OLRGuLeECfYp2yiIAbZDCENk8N1Sapu6WAaKlt5T3dRcqsQjE1CBCLWt7Zb8h+w0ekqiEnn+WCNNxFvegYrVuj3C+VUwyO6D5x46ODOOq5QQ==\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43408/providers/Microsoft.Compute/virtualMachineScaleSets/vmss48542/virtualMachines/1/networkInterfaces/primary-nic-cfg\"}]},\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2023-01-13T02:23:24.0826726+00:00\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43408/providers/Microsoft.Compute/virtualMachines/vmss48542_1/extensions/Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Updating\",\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Monitor\",\r\n \"type\": \"AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": \"1.0\",\r\n \"settings\": {\"GCS_AUTO_CONFIG\":true}\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43408/providers/Microsoft.Compute/virtualMachines/vmss48542_1/extensions/Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Updating\",\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Security.Monitoring\",\r\n \"type\": \"AzureSecurityLinuxAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": {\"enableGenevaUpload\":true,\"enableAutoConfig\":true,\"reportSuccessOnUnsupportedDistro\":true}\r\n }\r\n }\r\n ]\r\n}", - "x-ms-client-request-id" : "a928b922-03e2-4bc8-8b3f-4d4537fdfda1", + "x-ms-request-id" : "8e0580ec-0ba3-46e1-86c3-5fd38c681fa8", + "Body" : "{\r\n \"name\": \"vmss81183_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg69500/providers/Microsoft.Compute/virtualMachineScaleSets/vmss81183/virtualMachines/1\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"instanceId\": \"1\",\r\n \"sku\": {\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": false,\r\n \"modelDefinitionApplied\": \"VirtualMachineScaleSet\",\r\n \"instanceView\": {\r\n \"placementGroupId\": \"30381042-3d0c-47b5-90bf-57fe67c225da\",\r\n \"platformUpdateDomain\": 1,\r\n \"platformFaultDomain\": 1,\r\n \"disks\": [\r\n {\r\n \"name\": \"vmss81183_vmss81183_1_OsDisk_1_b0d69037b3bf45808a559eed7b3d4fd9\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2023-04-20T03:39:02.4513174+00:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2023-04-20T03:39:02.4668566+00:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/deallocated\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM deallocated\"\r\n }\r\n ]\r\n },\r\n \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg69500/providers/Microsoft.Network/virtualNetworks/vmssvnet/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\"}}]}}]},\r\n \"vmId\": \"25f6fe84-768e-46da-b74f-221018225717\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202304180\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss81183_vmss81183_1_OsDisk_1_b0d69037b3bf45808a559eed7b3d4fd9\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg69500/providers/Microsoft.Compute/disks/vmss81183_vmss81183_1_OsDisk_1_b0d69037b3bf45808a559eed7b3d4fd9\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss81183-vm000001\",\r\n \"adminUsername\": \"jvuser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/jvuser/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQCoYxUat8P0RpwJvxfrkMyXyGWpWiXQKc9KCL2eV4h0h/wpK6JTkTCXWvJg7VawBWdXTbjLJZVFrigASypuiE9uvLbX/xcqLwTqD+8cP2vlIg/gCWkVvGiz6NpvqeAFi443mx1gIWzuiQ4leXy4CGEzuphl5uXymZwiCqjF4zCJzQ==\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg69500/providers/Microsoft.Compute/virtualMachineScaleSets/vmss81183/virtualMachines/1/networkInterfaces/primary-nic-cfg\"}]},\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2023-04-20T03:27:33.6130883+00:00\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg69500/providers/Microsoft.Compute/virtualMachines/vmss81183_1/extensions/Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Updating\",\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Monitor\",\r\n \"type\": \"AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": \"1.0\",\r\n \"settings\": {\"GCS_AUTO_CONFIG\":true}\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg69500/providers/Microsoft.Compute/virtualMachines/vmss81183_1/extensions/Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Updating\",\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Security.Monitoring\",\r\n \"type\": \"AzureSecurityLinuxAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": {\"enableGenevaUpload\":true,\"enableAutoConfig\":true,\"reportSuccessOnUnsupportedDistro\":true}\r\n }\r\n }\r\n ]\r\n}", + "x-ms-client-request-id" : "d6add86b-02f1-4857-ad05-a647f2938892", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43408/providers/Microsoft.Compute/virtualMachineScaleSets/vmss48542/virtualMachines/1?$expand=instanceView&api-version=2023-03-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg69500/providers/Microsoft.Compute/virtualMachineScaleSets/vmss81183/virtualMachines/1?$expand=instanceView&api-version=2023-03-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.23.0-beta.1 (17.0.3.1; Mac OS X; 11.7.2)", - "x-ms-client-request-id" : "fecaed5d-c011-4e7e-8d35-2ec50c75acc6", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.3)", + "x-ms-client-request-id" : "5e964f72-f717-4c8e-a80d-69558d715958", "Content-Type" : "application/json" }, "Response" : { @@ -1005,28 +977,28 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11956", + "x-ms-ratelimit-remaining-subscription-reads" : "11984", "StatusCode" : "200", - "Date" : "Fri, 13 Jan 2023 02:35:52 GMT", - "x-ms-correlation-request-id" : "c185e7d4-cc9f-4dad-bd29-fc85b056daee", + "Date" : "Thu, 20 Apr 2023 03:39:09 GMT", + "x-ms-correlation-request-id" : "183021d2-da2e-4869-8c06-341bdf5a42eb", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20230113T023553Z:c185e7d4-cc9f-4dad-bd29-fc85b056daee", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMScaleSetVM3Min;997,Microsoft.Compute/GetVMScaleSetVM30Min;4989,Microsoft.Compute/VMScaleSetVMViews3Min;4983", + "x-ms-routing-request-id" : "JAPANEAST:20230420T033909Z:183021d2-da2e-4869-8c06-341bdf5a42eb", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetVMScaleSetVM3Min;998,Microsoft.Compute/GetVMScaleSetVM30Min;4993,Microsoft.Compute/VMScaleSetVMViews3Min;4991", "Expires" : "-1", "Content-Length" : "5645", - "x-ms-request-id" : "df7c6991-bf49-4f5b-a004-5bd671d26a13", - "Body" : "{\r\n \"name\": \"vmss48542_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43408/providers/Microsoft.Compute/virtualMachineScaleSets/vmss48542/virtualMachines/1\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"instanceId\": \"1\",\r\n \"sku\": {\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": false,\r\n \"modelDefinitionApplied\": \"VirtualMachineScaleSet\",\r\n \"instanceView\": {\r\n \"placementGroupId\": \"96f87aab-f5d5-4865-8306-d6391e40090f\",\r\n \"platformUpdateDomain\": 1,\r\n \"platformFaultDomain\": 1,\r\n \"disks\": [\r\n {\r\n \"name\": \"vmss48542_vmss48542_1_OsDisk_1_7fa69753d73347b19fdf46f4927d2a37\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2023-01-13T02:35:31.9848913+00:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2023-01-13T02:35:32.0005108+00:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/deallocated\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM deallocated\"\r\n }\r\n ]\r\n },\r\n \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43408/providers/Microsoft.Network/virtualNetworks/vmssvnet/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\"}}]}}]},\r\n \"vmId\": \"82b33246-8a3e-4a97-995f-51e6f611de06\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202301100\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss48542_vmss48542_1_OsDisk_1_7fa69753d73347b19fdf46f4927d2a37\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43408/providers/Microsoft.Compute/disks/vmss48542_vmss48542_1_OsDisk_1_7fa69753d73347b19fdf46f4927d2a37\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss48542-vm000001\",\r\n \"adminUsername\": \"jvuser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/jvuser/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQCWDIO2KhzxW6WmZc1nKrf9SEbcLlce//+rq9EdrGgHtEc8a+sL6Nj1s01FhzBQi6OLRGuLeECfYp2yiIAbZDCENk8N1Sapu6WAaKlt5T3dRcqsQjE1CBCLWt7Zb8h+w0ekqiEnn+WCNNxFvegYrVuj3C+VUwyO6D5x46ODOOq5QQ==\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43408/providers/Microsoft.Compute/virtualMachineScaleSets/vmss48542/virtualMachines/1/networkInterfaces/primary-nic-cfg\"}]},\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2023-01-13T02:23:24.0826726+00:00\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43408/providers/Microsoft.Compute/virtualMachines/vmss48542_1/extensions/Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Updating\",\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Monitor\",\r\n \"type\": \"AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": \"1.0\",\r\n \"settings\": {\"GCS_AUTO_CONFIG\":true}\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg43408/providers/Microsoft.Compute/virtualMachines/vmss48542_1/extensions/Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Updating\",\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Security.Monitoring\",\r\n \"type\": \"AzureSecurityLinuxAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": {\"enableGenevaUpload\":true,\"enableAutoConfig\":true,\"reportSuccessOnUnsupportedDistro\":true}\r\n }\r\n }\r\n ]\r\n}", - "x-ms-client-request-id" : "fecaed5d-c011-4e7e-8d35-2ec50c75acc6", + "x-ms-request-id" : "fd5e5426-2827-477b-a1f6-35245c318d59", + "Body" : "{\r\n \"name\": \"vmss81183_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg69500/providers/Microsoft.Compute/virtualMachineScaleSets/vmss81183/virtualMachines/1\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"instanceId\": \"1\",\r\n \"sku\": {\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": false,\r\n \"modelDefinitionApplied\": \"VirtualMachineScaleSet\",\r\n \"instanceView\": {\r\n \"placementGroupId\": \"30381042-3d0c-47b5-90bf-57fe67c225da\",\r\n \"platformUpdateDomain\": 1,\r\n \"platformFaultDomain\": 1,\r\n \"disks\": [\r\n {\r\n \"name\": \"vmss81183_vmss81183_1_OsDisk_1_b0d69037b3bf45808a559eed7b3d4fd9\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2023-04-20T03:39:02.4513174+00:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2023-04-20T03:39:02.4668566+00:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/deallocated\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM deallocated\"\r\n }\r\n ]\r\n },\r\n \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg69500/providers/Microsoft.Network/virtualNetworks/vmssvnet/subnets/subnet1\"},\"privateIPAddressVersion\":\"IPv4\"}}]}}]},\r\n \"vmId\": \"25f6fe84-768e-46da-b74f-221018225717\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202304180\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss81183_vmss81183_1_OsDisk_1_b0d69037b3bf45808a559eed7b3d4fd9\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg69500/providers/Microsoft.Compute/disks/vmss81183_vmss81183_1_OsDisk_1_b0d69037b3bf45808a559eed7b3d4fd9\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss81183-vm000001\",\r\n \"adminUsername\": \"jvuser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/jvuser/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQCoYxUat8P0RpwJvxfrkMyXyGWpWiXQKc9KCL2eV4h0h/wpK6JTkTCXWvJg7VawBWdXTbjLJZVFrigASypuiE9uvLbX/xcqLwTqD+8cP2vlIg/gCWkVvGiz6NpvqeAFi443mx1gIWzuiQ4leXy4CGEzuphl5uXymZwiCqjF4zCJzQ==\"\r\n }\r\n ]\r\n },\r\n \"provisionVMAgent\": true,\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg69500/providers/Microsoft.Compute/virtualMachineScaleSets/vmss81183/virtualMachines/1/networkInterfaces/primary-nic-cfg\"}]},\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2023-04-20T03:27:33.6130883+00:00\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg69500/providers/Microsoft.Compute/virtualMachines/vmss81183_1/extensions/Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Updating\",\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Monitor\",\r\n \"type\": \"AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": \"1.0\",\r\n \"settings\": {\"GCS_AUTO_CONFIG\":true}\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javacsmrg69500/providers/Microsoft.Compute/virtualMachines/vmss81183_1/extensions/Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Updating\",\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Security.Monitoring\",\r\n \"type\": \"AzureSecurityLinuxAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": {\"enableGenevaUpload\":true,\"enableAutoConfig\":true,\"reportSuccessOnUnsupportedDistro\":true}\r\n }\r\n }\r\n ]\r\n}", + "x-ms-client-request-id" : "5e964f72-f717-4c8e-a80d-69558d715958", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg43408?api-version=2021-01-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javacsmrg69500?api-version=2021-01-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.23.0-beta.1 (17.0.3.1; Mac OS X; 11.7.2)", - "x-ms-client-request-id" : "b6e15f25-8b75-42b2-a34f-081b566b4bf0", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.26.0-beta.1 (17.0.3.1; Mac OS X; 13.3)", + "x-ms-client-request-id" : "c3dfc59b-1538-4203-9165-1c4bfaf06c69", "Content-Type" : "application/json" }, "Response" : { @@ -1034,18 +1006,18 @@ "X-Content-Type-Options" : "nosniff", "Pragma" : "no-cache", "StatusCode" : "202", - "Date" : "Fri, 13 Jan 2023 02:35:56 GMT", - "x-ms-correlation-request-id" : "f466ad08-4019-4bb2-b5c2-7ffb5ecef63e", + "Date" : "Thu, 20 Apr 2023 03:39:12 GMT", + "x-ms-correlation-request-id" : "dc2165fd-6681-4e2f-a7e6-9b49fab8fb8c", "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "Retry-After" : "0", "Cache-Control" : "no-cache", - "x-ms-routing-request-id" : "SOUTHEASTASIA:20230113T023557Z:f466ad08-4019-4bb2-b5c2-7ffb5ecef63e", + "x-ms-routing-request-id" : "JAPANEAST:20230420T033913Z:dc2165fd-6681-4e2f-a7e6-9b49fab8fb8c", "Expires" : "-1", "Content-Length" : "0", - "x-ms-request-id" : "f466ad08-4019-4bb2-b5c2-7ffb5ecef63e", - "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc0MzQwOC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2021-01-01" + "x-ms-request-id" : "dc2165fd-6681-4e2f-a7e6-9b49fab8fb8c", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBQ1NNUkc2OTUwMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2021-01-01" }, "Exception" : null } ], - "variables" : [ "javacsmrg43408", "vmss48542" ] + "variables" : [ "javacsmrg69500", "vmss81183" ] } \ No newline at end of file diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/samples/Utils.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/samples/Utils.java index 923ce59e62ea..3f28a2cace90 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/samples/Utils.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/samples/Utils.java @@ -509,6 +509,7 @@ public static void print(VirtualMachine resource) { .append("\n\tTags: ").append(resource.tags()) .append("\n\tHardwareProfile: ") .append("\n\t\tSize: ").append(resource.size()) + .append("\n\ttimeCreated: ").append(resource.timeCreated()) .append(storageProfile) .append(osProfile) .append(networkProfile)